albertogpz commented on a change in pull request #6052:
URL: https://github.com/apache/geode/pull/6052#discussion_r589350120
##########
File path:
geode-core/src/main/java/org/apache/geode/internal/cache/wan/parallel/ConcurrentParallelGatewaySenderEventProcessor.java
##########
@@ -132,22 +134,24 @@ public int eventQueueSize() {
}
@Override
- public void enqueueEvent(EnumListenerEvent operation, EntryEvent event,
Object substituteValue)
+ public boolean enqueueEvent(EnumListenerEvent operation, EntryEvent event,
Object substituteValue)
throws IOException, CacheException {
- enqueueEvent(operation, event, substituteValue, false);
+ return enqueueEvent(operation, event, substituteValue, false, null);
}
@Override
- public void enqueueEvent(EnumListenerEvent operation, EntryEvent event,
Object substituteValue,
- boolean isLastEventInTransaction) throws IOException, CacheException {
+ public boolean enqueueEvent(EnumListenerEvent operation, EntryEvent event,
Object substituteValue,
+ boolean isLastEventInTransaction, Predicate<InternalGatewayQueueEvent>
condition)
+ throws IOException, CacheException {
Region region = event.getRegion();
// int bucketId =
PartitionedRegionHelper.getHashKey((EntryOperation)event);
Review comment:
ok
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]