com.gemstone.org.jgroups.protocols.RpcProtocolEXAMPLE Maven / Gradle / Ivy
Show all versions of gemfire-jgroups Show documentation
/** Notice of modification as required by the LGPL
* This file was modified by Gemstone Systems Inc. on
* $Date$
**/
// $Id: RpcProtocolEXAMPLE.java,v 1.2 2004/03/30 06:47:21 belaban Exp $
package com.gemstone.org.jgroups.protocols;
import com.gemstone.org.jgroups.Event;
import com.gemstone.org.jgroups.stack.RpcProtocol;
/**
*/
public class RpcProtocolEXAMPLE extends RpcProtocol {
@Override // GemStoneAddition
public String getName() {return "RpcProtocolEXAMPLE";}
/* ------------------------- Request handler methods ----------------------------- */
// Your methods, e.g.
public void foo() {}
public Object bar(int a, int b) {return null;}
/* --------------------- End of Request handler methods -------------------------- */
/**
Callback. Called by superclass when event may be handled.
Do not use PassUp
in this method as the event is passed up
by default by the superclass after this method returns !
@return boolean Defaults to true. If false, event will not be passed up the stack.
*/
@Override // GemStoneAddition
public boolean handleUpEvent(Event evt) {return true;}
/**
Callback. Called by superclass when event may be handled.
Do not use PassDown
in this method as the event is passed down
by default by the superclass after this method returns !
@return boolean Defaults to true. If false, event will not be passed down the stack.
*/
@Override // GemStoneAddition
public boolean handleDownEvent(Event evt) {return true;}
}