use of com.hazelcast.cp.internal.raft.impl.task.ReplicateTask in project hazelcast by hazelcast.
the class RaftNodeImpl method replicate.
@Override
public InternalCompletableFuture replicate(Object operation) {
InternalCompletableFuture resultFuture = raftIntegration.newCompletableFuture();
execute(new ReplicateTask(this, operation, resultFuture));
return resultFuture;
}
Aggregations