Pluggable strategy for asynchronously executing requests.
| 154 | * Pluggable strategy for asynchronously executing requests. |
| 155 | */ |
| 156 | public interface AsyncRunner { |
| 157 | |
| 158 | void closeAll(); |
| 159 | |
| 160 | void closed(ClientHandler clientHandler); |
| 161 | |
| 162 | void exec(ClientHandler code); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * The runnable that will be used for every new client connection. |
no outgoing calls
no test coverage detected
searching dependent graphs…