01: /**
02: * $Revision$
03: * $Date$
04: *
05: * Copyright (C) 1999-2005 Jive Software. All rights reserved.
06: * This software is the proprietary information of Jive Software. Use is subject to license terms.
07: */package org.jivesoftware.util.cache;
08:
09: import java.io.Externalizable;
10:
11: /**
12: * An interface to mix in Serializable and Runnable, which are both required for
13: * sending invocable tasks across a cluster.
14: */
15: public interface ClusterTask extends Runnable, Externalizable {
16:
17: public Object getResult();
18:
19: }
|