Uses of Interface
org.jgroups.ChannelListener
-
Packages that use ChannelListener 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.demos Provides demonstrations of JGroups functionality.org.jgroups.fork -
-
Uses of ChannelListener in org.jgroups
Fields in org.jgroups with type parameters of type ChannelListener Modifier and Type Field Description protected java.util.Set<ChannelListener>
JChannel. channel_listeners
Methods in org.jgroups with parameters of type ChannelListener Modifier and Type Method Description void
Channel. addChannelListener(ChannelListener listener)
Deprecated.Adds a ChannelListener instance that will be notified when a channel event such as connect, disconnect or close occurs.JChannel
JChannel. addChannelListener(ChannelListener listener)
Adds a ChannelListener that will be notified when a connect, disconnect or close occursvoid
Channel. removeChannelListener(ChannelListener listener)
Deprecated.Removes a ChannelListener previously installedJChannel
JChannel. removeChannelListener(ChannelListener listener)
Method parameters in org.jgroups with type arguments of type ChannelListener Modifier and Type Method Description protected JChannel
JChannel. notifyListeners(java.util.function.Consumer<ChannelListener> func, java.lang.String msg)
-
Uses of ChannelListener in org.jgroups.blocks
Classes in org.jgroups.blocks that implement ChannelListener Modifier and Type Class Description class
MessageDispatcher
Provides synchronous and asynchronous message sending with request-response correlation; i.e., matching responses with the original request.class
RpcDispatcher
This class allows a programmer to invoke remote methods in all (or single) group members and optionally wait for the return value(s). -
Uses of ChannelListener in org.jgroups.demos
Classes in org.jgroups.demos that implement ChannelListener Modifier and Type Class Description class
Draw
Shared whiteboard, each new instance joins the same group. -
Uses of ChannelListener in org.jgroups.fork
Classes in org.jgroups.fork that implement ChannelListener Modifier and Type Class Description class
ForkChannel
Implementation of a ForkChannel, which is a light-weight channel.
-