use of com.hazelcast.monitor.impl.LocalQueueStatsImpl in project hazelcast by hazelcast.
the class RemoveOperation method afterRun.
@Override
public void afterRun() throws Exception {
LocalQueueStatsImpl stats = getQueueService().getLocalQueueStatsImpl(name);
stats.incrementOtherOperations();
if (itemId != -1) {
publishEvent(ItemEventType.REMOVED, data);
}
}
use of com.hazelcast.monitor.impl.LocalQueueStatsImpl in project hazelcast by hazelcast.
the class SizeOperation method afterRun.
@Override
public void afterRun() throws Exception {
LocalQueueStatsImpl stats = getQueueService().getLocalQueueStatsImpl(name);
stats.incrementOtherOperations();
}
use of com.hazelcast.monitor.impl.LocalQueueStatsImpl in project hazelcast by hazelcast.
the class AddAllOperation method afterRun.
@Override
public void afterRun() throws Exception {
LocalQueueStatsImpl stats = getQueueService().getLocalQueueStatsImpl(name);
stats.incrementOtherOperations();
if (Boolean.TRUE.equals(response)) {
for (Data data : dataList) {
publishEvent(ItemEventType.ADDED, data);
}
}
}
use of com.hazelcast.monitor.impl.LocalQueueStatsImpl in project hazelcast by hazelcast.
the class ClearOperation method afterRun.
@Override
public void afterRun() throws Exception {
LocalQueueStatsImpl stats = getQueueService().getLocalQueueStatsImpl(name);
stats.incrementOtherOperations();
for (Data data : dataMap.values()) {
publishEvent(ItemEventType.REMOVED, data);
}
}
use of com.hazelcast.monitor.impl.LocalQueueStatsImpl in project hazelcast by hazelcast.
the class CompareAndRemoveOperation method afterRun.
@Override
public void afterRun() throws Exception {
LocalQueueStatsImpl stats = getQueueService().getLocalQueueStatsImpl(name);
stats.incrementOtherOperations();
if (hasListener()) {
for (Data data : dataMap.values()) {
publishEvent(ItemEventType.REMOVED, data);
}
}
}
Aggregations