Package org.jgroups.protocols
Class PingRsp
- java.lang.Object
-
- org.jgroups.protocols.PingRsp
-
- All Implemented Interfaces:
java.io.Serializable,Streamable
public class PingRsp extends java.lang.Object implements java.io.Serializable, Streamable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Addresscoord_addrbooleanis_serverAddressown_addr
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)AddressgetAddress()AddressgetCoordAddress()inthashCode()booleanisCoord()booleanisServer()voidreadFrom(java.io.DataInputStream instream)Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedintsize()java.lang.StringtoString()voidwriteTo(java.io.DataOutputStream outstream)Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
isCoord
public boolean isCoord()
-
size
public int size()
-
getAddress
public Address getAddress()
-
getCoordAddress
public Address getCoordAddress()
-
isServer
public boolean isServer()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
writeTo
public void writeTo(java.io.DataOutputStream outstream) throws java.io.IOExceptionDescription copied from interface:StreamableWrite the entire state of the current object (including superclasses) to outstream. Note that the output stream must not be closed- Specified by:
writeToin interfaceStreamable- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInputStream instream) throws java.io.IOException, java.lang.IllegalAccessException, java.lang.InstantiationExceptionDescription copied from interface:StreamableRead the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Specified by:
readFromin interfaceStreamable- Throws:
java.io.IOExceptionjava.lang.IllegalAccessExceptionjava.lang.InstantiationException
-
-