Uses of Class
org.jgroups.Header
-
Packages that use Header Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc.org.jgroups.blocks Provides building blocks that are layered on top of channels.org.jgroups.mux org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.protocols.pbcast Supports probabilistic broadcasts.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of Header in org.jgroups
Methods in org.jgroups that return Header Modifier and Type Method Description Header
Message. getHeader(java.lang.String key)
Header
Message. putHeaderIfAbsent(java.lang.String key, Header hdr)
Puts a header given a key into the map, only if the key doesn't exist yetHeader
Message. removeHeader(java.lang.String key)
Deprecated.Use getHeader() instead.Methods in org.jgroups that return types with arguments of type Header Modifier and Type Method Description java.util.Map<java.lang.String,Header>
Message. getHeaders()
Returns a reference to the headers hashmap, which is immutable.Methods in org.jgroups with parameters of type Header Modifier and Type Method Description void
Message. putHeader(java.lang.String key, Header hdr)
Puts a header given a key into the hashmap.Header
Message. putHeaderIfAbsent(java.lang.String key, Header hdr)
Puts a header given a key into the map, only if the key doesn't exist yet -
Uses of Header in org.jgroups.blocks
Subclasses of Header in org.jgroups.blocks Modifier and Type Class Description static class
PullPushAdapter.PullHeader
Deprecated.static class
RequestCorrelator.Header
The header for RequestCorrelator messages -
Uses of Header in org.jgroups.mux
Subclasses of Header in org.jgroups.mux Modifier and Type Class Description class
MuxHeader
Header used for multiplexing and de-multiplexing between service components on top of a Multiplexer (Channel) -
Uses of Header in org.jgroups.protocols
Subclasses of Header in org.jgroups.protocols Modifier and Type Class Description class
AuthHeader
AuthHeader is a holder object for the token that is passed from the joiner to the coordinatorstatic class
BSH.BshHeader
static class
CAUSAL.CausalHeader
static class
CAUSAL.CausalNewViewHeader
static class
COMPRESS.CompressHeader
static class
DISCARD.DiscardHeader
static class
ENCRYPT.EncryptHeader
static class
FC.FcHeader
static class
FD_ALL.Header
static class
FD_SIMPLE.FdHeader
static class
FD_SOCK.FdHeader
static class
FD.FdHeader
class
FragHeader
static class
HTOTAL.HTotalHeader
static class
MERGE3.CoordAnnouncement
static class
MERGEFAST.MergefastHeader
class
PingHeader
static class
SEQUENCER.SequencerHeader
static class
SFC.Header
static class
SMACK.SmackHeader
class
TcpHeader
class
TpHeader
Generic transport header, used by TP.class
TunnelHeader
class
UdpHeader
static class
UNICAST.UnicastHeader
static class
VERIFY_SUSPECT.VerifyHeader
static class
VIEW_SYNC.ViewSyncHeader
-
Uses of Header in org.jgroups.protocols.pbcast
Subclasses of Header in org.jgroups.protocols.pbcast Modifier and Type Class Description static class
FLUSH.FlushHeader
static class
GMS.GmsHeader
class
NakAckHeader
static class
STABLE.StableHeader
static class
STATE_TRANSFER.StateHeader
Wraps data for a state request/response.static class
STREAMING_STATE_TRANSFER.StateHeader
-
Uses of Header in org.jgroups.util
Methods in org.jgroups.util that return Header Modifier and Type Method Description Header
Headers. getHeader(java.lang.String key)
Returns the header associated with keyHeader
Headers. putHeaderIfAbsent(java.lang.String key, Header hdr)
Puts a header given a key into the map, only if the key doesn't exist yetHeader
Headers. removeHeader(java.lang.String key)
Deprecated.Use getHeader() instead.Methods in org.jgroups.util that return types with arguments of type Header Modifier and Type Method Description java.util.Map<java.lang.String,Header>
Headers. getHeaders()
Methods in org.jgroups.util with parameters of type Header Modifier and Type Method Description void
Headers. putHeader(java.lang.String key, Header hdr)
Puts a header given a key into the hashmap.Header
Headers. putHeaderIfAbsent(java.lang.String key, Header hdr)
Puts a header given a key into the map, only if the key doesn't exist yet
-