alex-plekhanov commented on a change in pull request #8960:
URL: https://github.com/apache/ignite/pull/8960#discussion_r609470663
##########
File path:
modules/core/src/main/java/org/apache/ignite/internal/client/thin/TcpClientCache.java
##########
@@ -947,4 +1061,73 @@ private void writeEntries(Map<? extends K, ? extends V>
map, PayloadOutputChanne
serDes.writeObject(out, e.getValue());
});
}
+
+ /**
+ * Adapter to convert CQ listener calls to JCache listener calls.
+ */
+ private static class JCacheEntryListenerAdapter<K, V> implements
CacheEntryUpdatedListener<K, V> {
Review comment:
I've moved `JCacheEntryListenerAdapter` to the separate file, but
`JCacheDisconnectListenerAdapter` is not static and relies on `TcpClientCache`
fields, so I've inlined it as an anonymous class.
--
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]