Package org.jgroups.protocols.tom
Class MessageID
- java.lang.Object
-
- org.jgroups.protocols.tom.MessageID
-
- All Implemented Interfaces:
java.lang.Cloneable
,java.lang.Comparable<MessageID>
,SizeStreamable
,Streamable
public class MessageID extends java.lang.Object implements java.lang.Comparable<MessageID>, java.lang.Cloneable, SizeStreamable
The represents an unique identifier for the messages processed by the Total Order Anycast protocol Note: it is similar to the ViewId (address + counter)- Since:
- 3.1
- Author:
- Pedro Ruivo
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
int
compareTo(MessageID other)
boolean
equals(java.lang.Object o)
Address
getAddress()
int
hashCode()
void
readFrom(java.io.DataInput in)
Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedint
serializedSize()
Returns the size (in bytes) of the marshalled objectjava.lang.String
toString()
void
writeTo(java.io.DataOutput out)
Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Constructor Detail
-
MessageID
public MessageID()
-
MessageID
public MessageID(Address address, long id)
-
-
Method Detail
-
compareTo
public int compareTo(MessageID other)
- Specified by:
compareTo
in interfacejava.lang.Comparable<MessageID>
-
getAddress
public Address getAddress()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamable
Returns the size (in bytes) of the marshalled object- Specified by:
serializedSize
in interfaceSizeStreamable
-
writeTo
public void writeTo(java.io.DataOutput out) throws java.io.IOException
Description copied from interface:Streamable
Write the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
writeTo
in interfaceStreamable
- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInput in) throws java.io.IOException, java.lang.ClassNotFoundException
Description copied from interface:Streamable
Read the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
readFrom
in interfaceStreamable
- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
-