Skip to content

Instantly share code, notes, and snippets.

@galderz
Last active August 29, 2015 14:11
Show Gist options
  • Save galderz/f0ca40e3f184a3c60476 to your computer and use it in GitHub Desktop.
Save galderz/f0ca40e3f184a3c60476 to your computer and use it in GitHub Desktop.
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