use of org.apache.geode.cache.AttributesMutator in project geode by apache.
the class WANTestBase method addAsyncEventQueueThroughAttributesMutator.
public static void addAsyncEventQueueThroughAttributesMutator(String regionName, String queueId) {
final Region r = cache.getRegion(Region.SEPARATOR + regionName);
assertNotNull(r);
AttributesMutator mutator = r.getAttributesMutator();
mutator.addAsyncEventQueueId(queueId);
}
use of org.apache.geode.cache.AttributesMutator in project geode by apache.
the class WANTestBase method addSenderThroughAttributesMutator.
public static void addSenderThroughAttributesMutator(String regionName, String senderIds) {
final Region r = cache.getRegion(Region.SEPARATOR + regionName);
assertNotNull(r);
AttributesMutator mutator = r.getAttributesMutator();
mutator.addGatewaySenderId(senderIds);
}
Aggregations