Uses of Class
org.jgroups.stack.ProtocolStack
-
Packages that use ProtocolStack Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc.org.jgroups.fork org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.stack Support for managing protocol stacks. -
-
Uses of ProtocolStack in org.jgroups
Fields in org.jgroups declared as ProtocolStack Modifier and Type Field Description protected ProtocolStack
JChannel. prot_stack
Methods in org.jgroups that return ProtocolStack Modifier and Type Method Description ProtocolStack
Channel. getProtocolStack()
Deprecated.ProtocolStack
JChannel. getProtocolStack()
ProtocolStack
JChannel. stack()
-
Uses of ProtocolStack in org.jgroups.fork
Subclasses of ProtocolStack in org.jgroups.fork Modifier and Type Class Description class
ForkProtocolStack
Protocol stack which maintains the mapping between fork-channel IDs and ForkChannels -
Uses of ProtocolStack in org.jgroups.protocols
Methods in org.jgroups.protocols that return ProtocolStack Modifier and Type Method Description ProtocolStack
FORK. createForkStack(java.lang.String fork_stack_id, java.util.List<Protocol> protocols, boolean initialize)
Returns the fork stack for fork_stack_id (if exitstent), or creates a new fork-stack from protocols and adds it into the hashmap of fork-stack (key is fork_stack_id). -
Uses of ProtocolStack in org.jgroups.stack
Fields in org.jgroups.stack declared as ProtocolStack Modifier and Type Field Description protected ProtocolStack
Configurator. stack
protected ProtocolStack
Protocol. stack
Methods in org.jgroups.stack that return ProtocolStack Modifier and Type Method Description ProtocolStack
ProtocolStack. addProtocol(Protocol prot)
Adds a protocol at the tail of the protocol listProtocolStack
ProtocolStack. addProtocols(java.util.List<Protocol> prots)
Adds a list of protocolsProtocolStack
ProtocolStack. addProtocols(Protocol... prots)
Adds a list of protocolsProtocolStack
ProtocolStack. bottomProtocol(Protocol bottom)
ProtocolStack
Protocol. getProtocolStack()
ProtocolStack
ProtocolStack. removeProtocols(java.lang.Class<? extends Protocol>... protocols)
ProtocolStack
ProtocolStack. removeProtocols(java.lang.String... protocols)
ProtocolStack
ProtocolStack. setChannel(JChannel ch)
ProtocolStack
ProtocolStack. topProtocol(Protocol top)
Methods in org.jgroups.stack with parameters of type ProtocolStack Modifier and Type Method Description java.util.List<Protocol>
ProtocolStack. copyProtocols(ProtocolStack targetStack)
protected static Protocol
Configurator. createLayer(ProtocolStack stack, ProtocolConfiguration config)
static Protocol
Configurator. createProtocol(java.lang.String prot_spec, ProtocolStack stack)
static Protocol
Configurator. createProtocol(java.lang.String prot_spec, ProtocolStack stack, boolean init_attrs)
Creates a new protocol given the protocol specification.static java.util.List<Protocol>
Configurator. createProtocols(java.util.List<ProtocolConfiguration> protocol_configs, ProtocolStack stack)
Takes a list of configurations, creates a protocol for each and returns all protocols in a list.static java.util.List<Protocol>
Configurator. createProtocolsAndInitializeAttrs(java.util.List<ProtocolConfiguration> cfgs, ProtocolStack st)
<T extends Protocol>
TProtocol. setProtocolStack(ProtocolStack s)
void
ProtocolStack. setup(ProtocolStack stack)
static Protocol
Configurator. setupProtocolStack(java.util.List<ProtocolConfiguration> protocol_configs, ProtocolStack st)
Sets up the protocol stack.Protocol
Configurator. setupProtocolStack(ProtocolStack copySource)
Constructors in org.jgroups.stack with parameters of type ProtocolStack Constructor Description Configurator(ProtocolStack protocolStack)
-