KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > shiftone > cache > decorator > cluster > Notification


1 package org.shiftone.cache.decorator.cluster;
2
3
4
5 import org.shiftone.cache.Cache;
6
7 import java.io.Serializable JavaDoc;
8
9
10 /**
11  * @version $Revision: 1.4 $
12  * @author <a HREF="mailto:jeff@shiftone.org">Jeff Drost</a>
13  */

14 public interface Notification extends Serializable JavaDoc
15 {
16
17     void execute(Cache cache);
18
19
20     public long getSenderInstanceId();
21
22
23     public String JavaDoc getCacheName();
24 }
25
Popular Tags