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. -
-
Uses of MembershipListener in org.jgroups
Subinterfaces of MembershipListener in org.jgroups Modifier and Type Interface Description interfaceExtendedMembershipListenerinterfaceExtendedReceiverExtends Receiver, plus the partial state transfer methods.interfaceReceiverDefines 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 classExtendedReceiverAdapterclassReceiverAdapter -
Uses of MembershipListener in org.jgroups.blocks
Classes in org.jgroups.blocks that implement MembershipListener Modifier and Type Class Description classDistributedHashtableDeprecated.UseReplicatedHashMapinsteadclassDistributedLockManagerDistributed lock manager is responsible for maintaining the lock information consistent on all participating nodes.classDistributedQueueProvides the abstraction of a java.util.LinkedList that is replicated at several locations.classDistributedTreeA tree-like structure that is replicated across several members.classMembershipListenerAdapterThis class provides multiplexing possibilities forMembershipListenerinstances.classNotificationBusThis class provides notification sending and handling capability.classReplicatedHashMap<K extends java.io.Serializable,V extends java.io.Serializable>Subclass of aConcurrentHashMapwith replication of the contents across a cluster.classReplicatedHashtableDeprecated.UseReplicatedHashMapinsteadclassReplicatedTreeA tree-like structure that is replicated across several members.classVotingAdapterVoting adapter provides a voting functionality for an application.Fields in org.jgroups.blocks declared as MembershipListener Modifier and Type Field Description protected MembershipListenerMessageDispatcher. membership_listenerprotected MembershipListener[]MembershipListenerAdapter. membershipListenersCacheMethods in org.jgroups.blocks with parameters of type MembershipListener Modifier and Type Method Description voidMembershipListenerAdapter. addMembershipListener(MembershipListener listener)Add membership listener to this adapter.voidPullPushAdapter. addMembershipListener(MembershipListener l)Deprecated.voidVotingAdapter. addMembershipListener(MembershipListener l)voidMembershipListenerAdapter. removeMembershipListener(MembershipListener listener)Remove membership listener from this adapter.voidPullPushAdapter. removeMembershipListener(MembershipListener l)Deprecated.voidVotingAdapter. removeMembershipListener(MembershipListener l)voidMessageDispatcher. setMembershipListener(MembershipListener l)voidPullPushAdapter. setMembershipListener(MembershipListener ml)Constructors in org.jgroups.blocks with parameters of type MembershipListener Constructor Description MessageDispatcher(PullPushAdapter adapter, java.io.Serializable id, MessageListener l, MembershipListener l2)MessageDispatcher(PullPushAdapter adapter, java.io.Serializable id, MessageListener l, MembershipListener l2, RequestHandler req_handler)MessageDispatcher(PullPushAdapter adapter, java.io.Serializable id, MessageListener l, MembershipListener l2, RequestHandler req_handler, boolean concurrent_processing)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, boolean deadlock_detection)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, boolean deadlock_detection, boolean concurrent_processing)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler, boolean deadlock_detection)MessageDispatcher(Channel channel, MessageListener l, MembershipListener l2, RequestHandler req_handler, boolean deadlock_detection, boolean concurrent_processing)PullPushAdapter(Transport transport, MembershipListener ml)Deprecated.PullPushAdapter(Transport transport, MessageListener l, MembershipListener ml)Deprecated.PullPushAdapter(Transport transport, MessageListener l, MembershipListener ml, boolean start)Deprecated.RpcDispatcher(PullPushAdapter adapter, java.io.Serializable id, MessageListener l, MembershipListener l2, java.lang.Object server_obj)RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj)RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj, boolean deadlock_detection)RpcDispatcher(Channel channel, MessageListener l, MembershipListener l2, java.lang.Object server_obj, boolean deadlock_detection, boolean concurrent_processing) -
Uses of MembershipListener in org.jgroups.demos
Classes in org.jgroups.demos that implement MembershipListener Modifier and Type Class Description classChatclassChatCoreclassDrawShared whiteboard, each new instance joins the same group.classQuoteClientUsed in conjunction with QuoteServer: a client is member of a group of quote servers which replicate stock quotes among themselves.classQuoteServerExample of a replicated quote server.classTopologyDemonstrates the membership service.classViewDemoDemos 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 classWhiteboardShared whiteboard: members are represented by rectangles that contain their names and the OS/arch of the machine they are working on.
-