1 8 package org.jboss.cache; 9 10 11 import org.jgroups.View; 12 13 20 public interface TreeCacheListener { 21 25 void nodeCreated(Fqn fqn); 26 27 31 void nodeRemoved(Fqn fqn); 32 33 37 void nodeLoaded(Fqn fqn); 38 39 40 44 void nodeEvicted(Fqn fqn); 45 46 51 void nodeModified(Fqn fqn); 52 53 57 void nodeVisited(Fqn fqn); 58 59 63 void cacheStarted(TreeCache cache); 64 65 69 void cacheStopped(TreeCache cache); 70 71 void viewChange(View new_view); } 73 | Popular Tags |