use of com.hazelcast.core.ICompletableFuture in project hazelcast by hazelcast.
the class AbstractPartitionMessageTask method processMessage.
@Override
public final void processMessage() {
beforeProcess();
Operation op = prepareOperation();
op.setCallerUuid(endpoint.getUuid());
ICompletableFuture f = nodeEngine.getOperationService().createInvocationBuilder(getServiceName(), op, getPartitionId()).setResultDeserialized(false).invoke();
f.andThen(this, this);
}
Aggregations