rice.p2p.replication.messaging
Class ReplicationMessage
java.lang.Object
rice.p2p.replication.messaging.ReplicationMessage
- All Implemented Interfaces:
- Serializable, Message, RawMessage, RawSerializable
- Direct Known Subclasses:
- ReminderMessage, RequestMessage, ResponseMessage
public abstract class ReplicationMessage
- extends Object
- implements RawMessage
- Version:
- $Id: ReplicationMessage.java 3613 2007-02-15 14:45:14Z jstewart $
- Author:
- Alan Mislove
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface rice.p2p.commonapi.rawserialization.RawMessage |
getType |
source
protected NodeHandle source
ReplicationMessage
protected ReplicationMessage(NodeHandle source)
- Constructor which takes a unique integer Id
- Parameters:
source - The source addresstopic - The topic
ReplicationMessage
public ReplicationMessage(InputBuffer buf,
Endpoint endpoint)
throws IOException
- Throws:
IOException
getPriority
public int getPriority()
- Method which should return the priority level of this message. The messages
can range in priority from 0 (highest priority) to Integer.MAX_VALUE (lowest) -
when sending messages across the wire, the queue is sorted by message priority.
If the queue reaches its limit, the lowest priority messages are discarded. Thus,
applications which are very verbose should have LOW_PRIORITY or lower, and
applications which are somewhat quiet are allowed to have MEDIUM_PRIORITY or
possibly even HIGH_PRIORITY.
- Specified by:
getPriority in interface Message
- Returns:
- This message's priority
getSource
public NodeHandle getSource()
- Method which returns this messages' source address
- Returns:
- The source of this message
serialize
public void serialize(OutputBuffer buf)
throws IOException
- Specified by:
serialize in interface RawSerializable
- Throws:
IOException
Copyright © 2010. All Rights Reserved.