Package org.jgroups.protocols
Class DAISYCHAIN.DaisyHeader
- java.lang.Object
-
- org.jgroups.Header
-
- org.jgroups.protocols.DAISYCHAIN.DaisyHeader
-
- All Implemented Interfaces:
Constructable<Header>
,SizeStreamable
,Streamable
- Enclosing class:
- DAISYCHAIN
public static class DAISYCHAIN.DaisyHeader extends Header
-
-
Field Summary
Fields Modifier and Type Field Description protected Address
original_sender
-
Constructor Summary
Constructors Constructor Description DaisyHeader()
DaisyHeader(Address original_sender)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.function.Supplier<? extends Header>
create()
Creates an instance of the class implementing this interfaceshort
getMagicId()
Returns the magic-ID.Address
getOriginalSender()
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 objectDAISYCHAIN.DaisyHeader
setOriginalSender(Address s)
java.lang.String
toString()
void
writeTo(java.io.DataOutput out)
Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Field Detail
-
original_sender
protected Address original_sender
-
-
Constructor Detail
-
DaisyHeader
public DaisyHeader()
-
DaisyHeader
public DaisyHeader(Address original_sender)
-
-
Method Detail
-
getMagicId
public short getMagicId()
Description copied from class:Header
Returns the magic-ID. If defined in jg-magic-map.xml, the IDs need to be the same- Specified by:
getMagicId
in classHeader
-
getOriginalSender
public Address getOriginalSender()
-
setOriginalSender
public DAISYCHAIN.DaisyHeader setOriginalSender(Address s)
-
create
public java.util.function.Supplier<? extends Header> create()
Description copied from interface:Constructable
Creates an instance of the class implementing this interface
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamable
Returns the size (in bytes) of the marshalled object
-
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- 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- Throws:
java.io.IOException
java.lang.ClassNotFoundException
-
-