Uses of Interface
org.jgroups.MembershipListener
-
Packages that use MembershipListener 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.demos.wb A distributed whiteboard applet implemented using JGroups.org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.protocols.relay org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of MembershipListener in org.jgroups
Subinterfaces of MembershipListener in org.jgroups Modifier and Type Interface Description interface
Receiver
Defines the callbacks that are invoked when messages, views etc are received on a channelClasses in org.jgroups that implement MembershipListener Modifier and Type Class Description class
ReceiverAdapter
An adapter implementing the Receiver interface with no-op implementations. -
Uses of MembershipListener in org.jgroups.blocks
Classes in org.jgroups.blocks that implement MembershipListener Modifier and Type Class Description class
PartitionedHashMap<K,V>
Hashmap which distributes its keys and values across the cluster.static class
PartitionedHashMap.ConsistentHashFunction<K>
class
ReplCache<K,V>
Cache which allows for replication factors per data items; the factor determines how many replicas of a key/value we create across the cluster.
See doc/design/ReplCache.txt for details.class
ReplicatedHashMap<K,V>
Implementation of aConcurrentMap
with replication of the contents across a cluster.class
ReplicatedTree
A tree-like structure that is replicated across several members.Fields in org.jgroups.blocks declared as MembershipListener Modifier and Type Field Description protected MembershipListener
MessageDispatcher. membership_listener
Methods in org.jgroups.blocks with parameters of type MembershipListener Modifier and Type Method Description void
PartitionedHashMap. addMembershipListener(MembershipListener l)
void
ReplCache. addMembershipListener(MembershipListener l)
void
PartitionedHashMap. removeMembershipListener(MembershipListener l)
void
ReplCache. removeMembershipListener(MembershipListener l)
<X extends MessageDispatcher>
XMessageDispatcher. setMembershipListener(MembershipListener l)
RpcDispatcher
RpcDispatcher. setMembershipListener(MembershipListener l)
-
Uses of MembershipListener in org.jgroups.demos
Classes in org.jgroups.demos that implement MembershipListener Modifier and Type Class Description class
Chat
class
Draw
Shared whiteboard, each new instance joins the same group.class
QuoteClient
Used in conjunction with QuoteServer: a client is member of a group of quote servers which replicate stock quotes among themselves.class
QuoteServer
Example of a replicated quote server.class
RelayDemo
Demos RELAY.class
RelayDemoRpc
Demos RELAY.class
ViewDemo
Demos the reception of views using a PullPushAdapter. -
Uses of MembershipListener in org.jgroups.demos.wb
Classes in org.jgroups.demos.wb that implement MembershipListener Modifier and Type Class Description class
Whiteboard
Shared whiteboard: members are represented by rectangles that contain their names and the OS/arch of the machine they are working on. -
Uses of MembershipListener in org.jgroups.protocols
Classes in org.jgroups.protocols that implement MembershipListener Modifier and Type Class Description protected class
RELAY.Receiver
Deprecated. -
Uses of MembershipListener in org.jgroups.protocols.relay
Classes in org.jgroups.protocols.relay that implement MembershipListener Modifier and Type Class Description protected class
Relayer.Bridge
-
Uses of MembershipListener in org.jgroups.util
Classes in org.jgroups.util that implement MembershipListener Modifier and Type Class Description class
MyReceiver<T>
Generic receiver for a JChannel
-