Starts the protocol handler. @throws Exception if start fails
()
| 965 | * @throws Exception if start fails |
| 966 | */ |
| 967 | @Override |
| 968 | public void start() throws Exception { |
| 969 | if (getLog().isInfoEnabled()) { |
| 970 | getLog().info(sm.getString("abstractProtocolHandler.start", getName())); |
| 971 | logPortOffset(); |
| 972 | } |
| 973 | |
| 974 | endpoint.start(); |
| 975 | monitorFuture = getUtilityExecutor().scheduleWithFixedDelay(this::startAsyncTimeout, 0, 60, TimeUnit.SECONDS); |
| 976 | } |
| 977 | |
| 978 | |
| 979 | /** |
nothing calls this directly
no test coverage detected