use of com.hazelcast.concurrent.semaphore.SemaphoreContainer in project hazelcast by hazelcast.
the class AcquireOperation method run.
@Override
public void run() throws Exception {
SemaphoreContainer semaphoreContainer = getSemaphoreContainer();
response = semaphoreContainer.acquire(getCallerUuid(), permitCount);
}
Aggregations