Last active
August 29, 2015 14:11
-
-
Save galderz/f0ca40e3f184a3c60476 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.infinispan.client.hotrod.annotation.*; | |
import org.infinispan.client.hotrod.event.*; | |
@ClientListener | |
public class EventLogListener { | |
// ... | |
@ClientCacheFailover | |
public void handleFailover(ClientCacheFailoverEvent e) { | |
// Deal with client failover, e.g. clear a near cache. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment