217218219220221222223224225226227
} @Override public void startAndWait() throws InterruptedException { BatchCoordinator coordinator = createCoordinator(); coordinator.run(); if ( Thread.currentThread().isInterrupted() ) { throw new InterruptedException(); } }
199200201202203204205206207208209
} } public void startAndWait() throws InterruptedException { BatchCoordinator coordinator = createCoordinator(); coordinator.run(); if ( Thread.currentThread().isInterrupted() ) { throw new InterruptedException(); } }
198199200201202203204205206207208
197198199200201202203204205206207