use of org.apache.heron.spi.statemgr.Lock in project heron by twitter.
the class UpdateTopologyManagerTest method mockLock.
private static Lock mockLock(boolean available) throws InterruptedException {
Lock lock = mock(Lock.class);
when(lock.tryLock(any(Long.class), any(TimeUnit.class))).thenReturn(available);
return lock;
}
Aggregations