Skip to content

Commit

Permalink
Override setScheduledExecutor in OpcUaClientConfigBuilder (#893)
Browse files Browse the repository at this point in the history
fixes #890
  • Loading branch information
kevinherron committed Oct 22, 2021
1 parent 17a8fc8 commit ed74640
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -158,6 +158,12 @@ public OpcUaClientConfigBuilder setEventLoop(NioEventLoopGroup eventLoop) {
return this;
}

@Override
public OpcUaClientConfigBuilder setScheduledExecutor(ScheduledExecutorService scheduledExecutor) {
super.setScheduledExecutor(scheduledExecutor);
return this;
}

@Override
public OpcUaClientConfigBuilder setWheelTimer(HashedWheelTimer wheelTimer) {
super.setWheelTimer(wheelTimer);
Expand Down

0 comments on commit ed74640

Please sign in to comment.