All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.org.jgroups.protocols.RpcProtocolEXAMPLE Maven / Gradle / Ivy

There is a newer version: 2.0-BETA
Show newest version
/** 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;} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy