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