Uses of Interface
org.jgroups.UpHandler
-
Packages that use UpHandler 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.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network. -
-
Uses of UpHandler in org.jgroups
Fields in org.jgroups declared as UpHandler Modifier and Type Field Description protected UpHandler
JChannel. up_handler
Methods in org.jgroups that return UpHandler Modifier and Type Method Description UpHandler
Channel. getUpHandler()
Deprecated.Returns UpHandler installed for this channelUpHandler
JChannel. getUpHandler()
Methods in org.jgroups with parameters of type UpHandler Modifier and Type Method Description void
Channel. setUpHandler(UpHandler up_handler)
Deprecated.Sets this channel event handler to be a recipient off all events .JChannel
JChannel. setUpHandler(UpHandler h)
-
Uses of UpHandler in org.jgroups.blocks
Methods in org.jgroups.blocks that return UpHandler Modifier and Type Method Description UpHandler
MessageDispatcher. getProtocolAdapter()
UpHandler
MessageDispatcher. protocolAdapter()
Methods in org.jgroups.blocks with parameters of type UpHandler Modifier and Type Method Description protected <X extends MessageDispatcher>
XMessageDispatcher. installUpHandler(UpHandler handler, boolean canReplace)
Sets the given UpHandler as the UpHandler for the channel. -
Uses of UpHandler in org.jgroups.protocols
Fields in org.jgroups.protocols with type parameters of type UpHandler Modifier and Type Field Description protected java.util.List<UpHandler>
AUTH. up_handlers
List of UpHandler which are called when an up event has been received.Methods in org.jgroups.protocols with parameters of type UpHandler Modifier and Type Method Description AUTH
AUTH. register(UpHandler handler)
Deprecated.AUTH
AUTH. unregister(UpHandler handler)
Deprecated.
-