use of com.hazelcast.client.map.impl.iterator.ClientMapIterator in project hazelcast by hazelcast.
the class ClientMapProxy method iterator.
@Override
@Nonnull
public Iterator<Entry<K, V>> iterator(int fetchSize) {
ClientPartitionService partitionService = getContext().getPartitionService();
int partitionCount = partitionService.getPartitionCount();
return new ClientMapIterator<>(this, fetchSize, partitionCount, false);
}
use of com.hazelcast.client.map.impl.iterator.ClientMapIterator in project hazelcast by hazelcast.
the class ClientMapProxy method iterator.
@Override
@Nonnull
public Iterator<Entry<K, V>> iterator() {
ClientPartitionService partitionService = getContext().getPartitionService();
int partitionCount = partitionService.getPartitionCount();
return new ClientMapIterator<>(this, partitionCount, false);
}
Aggregations