📄 subscribemessage.java
字号:
/*************************************************************************"Free Pastry" Peer-to-Peer Application Development SubstrateCopyright 2002, Rice University. All rights reserved.Redistribution and use in source and binary forms, with or withoutmodification, are permitted provided that the following conditions aremet:- Redistributions of source code must retain the above copyrightnotice, this list of conditions and the following disclaimer.- Redistributions in binary form must reproduce the above copyrightnotice, this list of conditions and the following disclaimer in thedocumentation and/or other materials provided with the distribution.- Neither the name of Rice University (RICE) nor the names of itscontributors may be used to endorse or promote products derived fromthis software without specific prior written permission.This software is provided by RICE and the contributors on an "as is"basis, without any representations or warranties of any kind, expressor implied including, but not limited to, representations orwarranties of non-infringement, merchantability or fitness for aparticular purpose. In no event shall RICE or contributors be liablefor any direct, indirect, incidental, special, exemplary, orconsequential damages (including, but not limited to, procurement ofsubstitute goods or services; loss of use, data, or profits; orbusiness interruption) however caused and on any theory of liability,whether in contract, strict liability, or tort (including negligenceor otherwise) arising in any way out of the use of this software, evenif advised of the possibility of such damage.********************************************************************************/package planet.scribe.messaging;import planet.commonapi.*;import planet.scribe.*;/** * @version $Id: SubscribeMessage.java,v 1.6 2003/10/22 03:16:43 amislove Exp $ * @author Alan Mislove */public class SubscribeMessage extends AnycastMessage { /** * The original subscriber */ protected NodeHandle subscriber; /** * The previous parent */ protected Id previousParent; /** * The id of this message */ protected int id; /** * @param source The source address * @param topic The topic * @param id The UID for this message * @param content The content */ public SubscribeMessage(NodeHandle source, Topic topic, int id, ScribeContent content) { this(source, topic, null, id, content); } /** * Constructor which takes a unique integer Id * * @param source The source address * @param topic The topic * @param id The UID for this message * @param content The content * @param previousParent The parent on this topic who died */ public SubscribeMessage(NodeHandle source, Topic topic, Id previousParent, int id, ScribeContent content) { super(source, topic, content); this.id = id; this.subscriber = source; this.previousParent = previousParent; } /** * Returns the node who is trying to subscribe * * @return The node who is attempting to subscribe */ public NodeHandle getSubscriber() { return subscriber; } /** * Returns the node who is trying to subscribe * * @return The node who is attempting to subscribe */ public Id getPreviousParent() { return previousParent; } /** * Returns this subscribe lost message's id * * @return The id of this subscribe lost message */ public int getId() { return id; } /** * Returns a String represneting this message * * @return A String of this message */ public String toString() { return "[SubscribeMessage " + topic + " subscriber " + subscriber.getId() + "]"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -