use of com.hazelcast.simulator.tests.map.helpers.ComplexDomainObject in project hazelcast-simulator by hazelcast.
the class MapComplexPredicateTest method prepare.
@Prepare(global = true)
public void prepare() {
Streamer<String, ComplexDomainObject> streamer = StreamerFactory.getInstance(map);
for (int i = 0; i < mapSize; i++) {
ComplexDomainObject value = createQuickSearchObject(i);
String key = value.getQuickSearchKey();
streamer.pushEntry(key, value);
}
streamer.await();
}
Aggregations