jdeppe-pivotal commented on a change in pull request #6794:
URL: https://github.com/apache/geode/pull/6794#discussion_r698817012
##########
File path:
geode-apis-compatible-with-redis/src/main/java/org/apache/geode/redis/internal/services/SynchronizedStripedCoordinator.java
##########
@@ -51,6 +52,17 @@ public SynchronizedStripedCoordinator(int concurrencyLevel) {
}
}
+ @Override
+ public <T> T execute(List<Object> stripeIds, int index, Callable<T>
callable) {
Review comment:
Initially it needed this otherwise these signatures would be ambiguous:
```
public <T> T execute(Object stripeId, Callable<T> callable)
public <T> T execute(List<Object> stripeIds, Callable<T> callable)
```
I've applied Donal's suggestion and made the locked object explicitly be a
`RedisKey`.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]