Package org.jgroups.protocols
Class RELAY.ViewData
- java.lang.Object
-
- org.jgroups.protocols.RELAY.ViewData
-
- All Implemented Interfaces:
Streamable
- Enclosing class:
- RELAY
protected static class RELAY.ViewData extends java.lang.Object implements Streamable
Contains local and remote views, and UUID information
-
-
Field Summary
Fields Modifier and Type Field Description protected View
global_view
protected View
remote_view
protected java.util.Map<Address,java.lang.String>
uuids
-
Constructor Summary
Constructors Constructor Description ViewData()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RELAY.ViewData
create(View remote_view, View global_view)
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 closedjava.lang.String
toString()
void
writeTo(java.io.DataOutput out)
Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Method Detail
-
create
public static RELAY.ViewData create(View remote_view, View global_view)
-
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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-