use of com.hazelcast.scheduledexecutor.impl.operations.IsDoneOperation in project hazelcast by hazelcast.
the class ScheduledFutureProxy method isDone.
@Override
public boolean isDone() {
checkAccessibleHandler();
checkAccessibleOwner();
Operation op = new IsDoneOperation(handler);
return this.<Boolean>invoke(op).join();
}
Aggregations