use of com.hazelcast.simulator.hz.SerializablePojo in project hazelcast-simulator by hazelcast.
the class LongSerializableCacheTest method prepare.
@Prepare(global = true)
public void prepare() {
Streamer<Long, SerializablePojo> streamer = StreamerFactory.getInstance(cache);
for (long key = 0; key < keyDomain; key++) {
streamer.pushEntry(key, new SerializablePojo());
}
streamer.await();
}
Aggregations