use of com.hazelcast.durableexecutor.impl.operations.DisposeResultOperation in project hazelcast by hazelcast.
the class DurableExecutorServiceProxy method disposeResult.
@Override
public void disposeResult(long uniqueId) {
int partitionId = Bits.extractInt(uniqueId, false);
int sequence = Bits.extractInt(uniqueId, true);
Operation op = new DisposeResultOperation(name, sequence).setPartitionId(partitionId);
InternalCompletableFuture<?> future = invokeOnPartition(op);
future.join();
}
Aggregations