Package org.jgroups.protocols
Class Frag3Header
- java.lang.Object
-
- org.jgroups.Header
-
- org.jgroups.protocols.Frag3Header
-
- All Implemented Interfaces:
Constructable<Header>
,SizeStreamable
,Streamable
public class Frag3Header extends Header
- Author:
- Bela Ban
-
-
Field Summary
Fields Modifier and Type Field Description protected int
frag_id
protected int
id
protected boolean
needs_deserialization
protected int
num_frags
protected int
offset
protected int
original_length
-
Constructor Summary
Constructors Constructor Description Frag3Header()
Frag3Header(int id, int frag_id, int num_frags)
Frag3Header(int id, int frag_id, int num_frags, int original_length, int offset)
-
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 interfaceint
getFragId()
short
getMagicId()
Returns the magic-ID.int
getNumFrags()
int
getOffset()
int
getOriginalLength()
boolean
needsDeserialization()
Frag3Header
needsDeserialization(boolean f)
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 objectFrag3Header
setFragId(int frag_id)
Frag3Header
setNumFrags(int n)
Frag3Header
setOffset(int offset)
Frag3Header
setOriginalLength(int l)
java.lang.String
toString()
void
writeTo(java.io.DataOutput out)
Write the entire state of the current object (including superclasses) to outstream.
-
-
-
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
-
create
public java.util.function.Supplier<? extends Header> create()
Description copied from interface:Constructable
Creates an instance of the class implementing this interface
-
getFragId
public int getFragId()
-
setFragId
public Frag3Header setFragId(int frag_id)
-
getNumFrags
public int getNumFrags()
-
setNumFrags
public Frag3Header setNumFrags(int n)
-
getOriginalLength
public int getOriginalLength()
-
setOriginalLength
public Frag3Header setOriginalLength(int l)
-
getOffset
public int getOffset()
-
setOffset
public Frag3Header setOffset(int offset)
-
needsDeserialization
public boolean needsDeserialization()
-
needsDeserialization
public Frag3Header needsDeserialization(boolean f)
-
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
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamable
Returns the size (in bytes) of the marshalled object
-
readFrom
public void readFrom(java.io.DataInput in) throws java.io.IOException
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
-
-