(Runnable r)
| 2332 | } |
| 2333 | |
| 2334 | public void submit(Runnable r) { |
| 2335 | while (true) { |
| 2336 | if (queue.remainingCapacity() > 0) { |
| 2337 | service.submit(r); |
| 2338 | break; |
| 2339 | } |
| 2340 | } |
| 2341 | } |
| 2342 | |
| 2343 | public void terminate() throws InterruptedException { |
| 2344 | service.shutdown(); |
no outgoing calls
no test coverage detected