How to add client cache invalidation listener? #1590
Unanswered
max-grigoriev
asked this question in
Q&A
Replies: 1 comment 2 replies
-
In general, we kept the Client-side support pretty minimal to learn where all this is going. Having a few real-world use-cases can help to understand the need for additional functionality so that we can improve the API. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Right now
CacheFrontend
interface doesn't haveaddInvalidationListener
method. It only existsClientSideCaching
implementation. And there are two static methods in this implementation to create the client side cache:but they return the interface. So the only way is to cast to implementation which is wrong as the method can return any implementation.
Beta Was this translation helpful? Give feedback.
All reactions