Search in sources :

Example 1 with IsDoneOperation

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();
}
Also used : IsDoneOperation(com.hazelcast.scheduledexecutor.impl.operations.IsDoneOperation) DisposeTaskOperation(com.hazelcast.scheduledexecutor.impl.operations.DisposeTaskOperation) GetResultOperation(com.hazelcast.scheduledexecutor.impl.operations.GetResultOperation) IsCanceledOperation(com.hazelcast.scheduledexecutor.impl.operations.IsCanceledOperation) CancelTaskOperation(com.hazelcast.scheduledexecutor.impl.operations.CancelTaskOperation) Operation(com.hazelcast.spi.Operation) GetStatisticsOperation(com.hazelcast.scheduledexecutor.impl.operations.GetStatisticsOperation) GetDelayOperation(com.hazelcast.scheduledexecutor.impl.operations.GetDelayOperation) IsDoneOperation(com.hazelcast.scheduledexecutor.impl.operations.IsDoneOperation)

Aggregations

CancelTaskOperation (com.hazelcast.scheduledexecutor.impl.operations.CancelTaskOperation)1 DisposeTaskOperation (com.hazelcast.scheduledexecutor.impl.operations.DisposeTaskOperation)1 GetDelayOperation (com.hazelcast.scheduledexecutor.impl.operations.GetDelayOperation)1 GetResultOperation (com.hazelcast.scheduledexecutor.impl.operations.GetResultOperation)1 GetStatisticsOperation (com.hazelcast.scheduledexecutor.impl.operations.GetStatisticsOperation)1 IsCanceledOperation (com.hazelcast.scheduledexecutor.impl.operations.IsCanceledOperation)1 IsDoneOperation (com.hazelcast.scheduledexecutor.impl.operations.IsDoneOperation)1 Operation (com.hazelcast.spi.Operation)1