use of com.hazelcast.crdt.pncounter.PNCounter in project hazelcast by hazelcast.
the class PNCounterNoDataMemberTest method getCounter.
@Override
protected PNCounter getCounter() {
final PNCounter counter = liteMember.getPNCounter(counterName);
((PNCounterProxy) counter).setOperationTryCount(1);
return counter;
}
Aggregations