use of com.hazelcast.map.impl.querycache.accumulator.AccumulatorInfo in project hazelcast by hazelcast.
the class MadePublishableOperation method setPublishable.
private void setPublishable() {
PartitionAccumulatorRegistry registry = QueryCacheUtil.getAccumulatorRegistryOrNull(getContext(), name, cacheId);
if (registry == null) {
return;
}
AccumulatorInfo info = registry.getInfo();
info.setPublishable(true);
if (logger.isFinestEnabled()) {
logger.finest("Accumulator was made publishable for map=" + getName());
}
this.done = true;
}
Aggregations