Package org.jgroups.protocols.pbcast
Class NakAckHeader2
- java.lang.Object
-
- org.jgroups.Header
-
- org.jgroups.protocols.pbcast.NakAckHeader2
-
- All Implemented Interfaces:
Constructable<Header>,SizeStreamable,Streamable
public class NakAckHeader2 extends Header
Header used byNAKACK2
-
-
Constructor Summary
Constructors Modifier Constructor Description NakAckHeader2()privateNakAckHeader2(byte type, long seqno)Constructor for regular messages or XMIT responsesprivateNakAckHeader2(byte type, Address sender)Constructor for retransmit requests (XMIT_REQs) (low and high define the range of msgs)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description NakAckHeader2copy()java.util.function.Supplier<? extends Header>create()Creates an instance of the class implementing this interfacestatic NakAckHeader2createHighestSeqnoHeader(long seqno)static NakAckHeader2createMessageHeader(long seqno)static NakAckHeader2createXmitRequestHeader(Address orginal_sender)static NakAckHeader2createXmitResponseHeader()shortgetMagicId()Returns the magic-ID.AddressgetSender()longgetSeqno()bytegetType()voidreadFrom(java.io.DataInput in)Read the state of the current object (including superclasses) from instream Note that the input stream must not be closedintserializedSize()Returns the size (in bytes) of the marshalled objectjava.lang.StringtoString()static java.lang.Stringtype2Str(byte t)voidwriteTo(java.io.DataOutput out)Write the entire state of the current object (including superclasses) to outstream.
-
-
-
Field Detail
-
MSG
public static final byte MSG
- See Also:
- Constant Field Values
-
XMIT_REQ
public static final byte XMIT_REQ
- See Also:
- Constant Field Values
-
XMIT_RSP
public static final byte XMIT_RSP
- See Also:
- Constant Field Values
-
HIGHEST_SEQNO
public static final byte HIGHEST_SEQNO
- See Also:
- Constant Field Values
-
type
byte type
-
seqno
long seqno
-
sender
Address sender
-
-
Constructor Detail
-
NakAckHeader2
public NakAckHeader2()
-
NakAckHeader2
private NakAckHeader2(byte type, long seqno)Constructor for regular messages or XMIT responses
-
NakAckHeader2
private NakAckHeader2(byte type, Address sender)Constructor for retransmit requests (XMIT_REQs) (low and high define the range of msgs)
-
-
Method Detail
-
getMagicId
public short getMagicId()
Description copied from class:HeaderReturns the magic-ID. If defined in jg-magic-map.xml, the IDs need to be the same- Specified by:
getMagicIdin classHeader
-
create
public java.util.function.Supplier<? extends Header> create()
Description copied from interface:ConstructableCreates an instance of the class implementing this interface
-
createMessageHeader
public static NakAckHeader2 createMessageHeader(long seqno)
-
createXmitRequestHeader
public static NakAckHeader2 createXmitRequestHeader(Address orginal_sender)
-
createXmitResponseHeader
public static NakAckHeader2 createXmitResponseHeader()
-
createHighestSeqnoHeader
public static NakAckHeader2 createHighestSeqnoHeader(long seqno)
-
getType
public byte getType()
-
getSeqno
public long getSeqno()
-
getSender
public Address getSender()
-
writeTo
public void writeTo(java.io.DataOutput out) 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- Throws:
java.io.IOException
-
readFrom
public void readFrom(java.io.DataInput in) throws java.io.IOException, java.lang.ClassNotFoundExceptionDescription copied from interface:StreamableRead the state of the current object (including superclasses) from instream Note that the input stream must not be closed- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
serializedSize
public int serializedSize()
Description copied from interface:SizeStreamableReturns the size (in bytes) of the marshalled object
-
copy
public NakAckHeader2 copy()
-
type2Str
public static java.lang.String type2Str(byte t)
-
-