use of org.apache.geode.pdx.SimpleClass1 in project geode by apache.
the class WANTestBase method doPutsPDXSerializable2.
public static void doPutsPDXSerializable2(String regionName, int numPuts) {
Region r = cache.getRegion(Region.SEPARATOR + regionName);
assertNotNull(r);
for (int i = 0; i < numPuts; i++) {
r.put("Key_" + i, new SimpleClass1(false, (short) i, "" + i, i, "" + i, "" + i, i, i));
}
}
Aggregations