for (Runnable runnable: runnables) {
if (runnable instanceof Worker) {
final Worker worker = (Worker) runnable;
final HttpServerConnection conn = worker.getConnection();
try {
conn.shutdown();
} catch (IOException ex) {
this.exceptionLogger.log(ex);
}
}
}