messageprotocolexample.java
来自「JGRoups源码」· Java 代码 · 共 56 行
JAVA
56 行
// $Id: MessageProtocolEXAMPLE.java,v 1.2 2004/03/30 06:47:21 belaban Exp $package org.jgroups.protocols;import org.jgroups.Event;import org.jgroups.Message;import org.jgroups.stack.MessageProtocol;/** */public class MessageProtocolEXAMPLE extends MessageProtocol { public String getName() {return "MessageProtocolEXAMPLE";} /** <b>Callback</b>. Called when a request for this protocol layer is received. */ public Object handle(Message req) { System.out.println("MessageProtocolEXAMPLE.handle(): this method should be overridden !"); return null; } /** <b>Callback</b>. Called by superclass when event may be handled.<p> <b>Do not use <code>PassUp</code> in this method as the event is passed up by default by the superclass after this method returns !</b> @return boolean Defaults to true. If false, event will not be passed up the stack. */ public boolean handleUpEvent(Event evt) {return true;} /** <b>Callback</b>. Called by superclass when event may be handled.<p> <b>Do not use <code>PassDown</code> in this method as the event is passed down by default by the superclass after this method returns !</b> @return boolean Defaults to true. If false, event will not be passed down the stack. */ public boolean handleDownEvent(Event evt) {return true;}}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?