Deallocate NIO memory pools, and close server socket.
()
| 232 | * Deallocate NIO memory pools, and close server socket. |
| 233 | */ |
| 234 | @Override |
| 235 | public void unbind() throws Exception { |
| 236 | if (running) { |
| 237 | stop(); |
| 238 | } |
| 239 | doCloseServerSocket(); |
| 240 | destroySsl(); |
| 241 | super.unbind(); |
| 242 | // Unlike other connectors, the thread pool is tied to the server socket |
| 243 | shutdownExecutor(); |
| 244 | if (getHandler() != null) { |
| 245 | getHandler().recycle(); |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | |
| 250 | @Override |
nothing calls this directly
no test coverage detected