use of com.hazelcast.durableexecutor.impl.operations.RetrieveAndDisposeResultOperation in project hazelcast by hazelcast.
the class DurableExecutorServiceProxy method retrieveAndDisposeResult.
@Override
public <T> Future<T> retrieveAndDisposeResult(long uniqueId) {
int partitionId = Bits.extractInt(uniqueId, false);
int sequence = Bits.extractInt(uniqueId, true);
Operation op = new RetrieveAndDisposeResultOperation(name, sequence).setPartitionId(partitionId);
return invokeOnPartition(op);
}
Aggregations