Executes a runnable in a single async thread. Multiple requests in a row may get queued. @param runnable the runnable that should be executed asynchronously.
(Runnable runnable)
| 22 | * @param runnable the runnable that should be executed asynchronously. |
| 23 | */ |
| 24 | public void execute(Runnable runnable) { |
| 25 | service.execute(runnable); |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Shuts the async executor service down. |
no outgoing calls
no test coverage detected