()
| 259 | } |
| 260 | |
| 261 | @Override |
| 262 | public final void awaitRunning() { |
| 263 | monitor.enterWhenUninterruptibly(hasReachedRunning); |
| 264 | try { |
| 265 | checkCurrentState(RUNNING); |
| 266 | } finally { |
| 267 | monitor.leave(); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | @Override |
| 272 | public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException { |
nothing calls this directly
no test coverage detected