Package org.jgroups.protocols
Class NakAckHeader
- java.lang.Object
-
- org.jgroups.Header
-
- org.jgroups.protocols.NakAckHeader
-
- All Implemented Interfaces:
Constructable<Header>,SizeStreamable,Streamable
public class NakAckHeader extends Header
- Since:
- 5.4
- Author:
- Bela Ban
-
-
Constructor Summary
Constructors Constructor Description NakAckHeader()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description NakAckHeadercopy()java.util.function.Supplier<? extends Header>create()Creates an instance of the class implementing this interfacestatic NakAckHeadercreateAckHeader(long ack)static NakAckHeadercreateHighestSeqnoHeader(long seqno)static NakAckHeadercreateMessageHeader(long seqno)static NakAckHeadercreateXmitRequestHeader(Address orginal_sender)static NakAckHeadercreateXmitResponseHeader()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()bytetype()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
-
ACK
public static final byte ACK
- See Also:
- Constant Field Values
-
type
protected byte type
-
seqno
protected long seqno
-
sender
protected Address sender
-
-
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 NakAckHeader createMessageHeader(long seqno)
-
createXmitRequestHeader
public static NakAckHeader createXmitRequestHeader(Address orginal_sender)
-
createXmitResponseHeader
public static NakAckHeader createXmitResponseHeader()
-
createHighestSeqnoHeader
public static NakAckHeader createHighestSeqnoHeader(long seqno)
-
createAckHeader
public static NakAckHeader createAckHeader(long ack)
-
getType
public byte getType()
-
type
public byte type()
-
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 NakAckHeader copy()
-
type2Str
public static java.lang.String type2Str(byte t)
-
-