Uses of Interface
org.jgroups.Receiver
-
Packages that use Receiver 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.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 Receiver in org.jgroups
Classes in org.jgroups that implement Receiver Modifier and Type Class Description class
ReceiverAdapter
An adapter implementing the Receiver interface with no-op implementations.Fields in org.jgroups declared as Receiver Modifier and Type Field Description protected Receiver
JChannel. receiver
Methods in org.jgroups that return Receiver Modifier and Type Method Description Receiver
Channel. getReceiver()
Deprecated.Returns a receiver for this channel if it has been installed usingChannel.setReceiver(Receiver)
, null otherwiseReceiver
JChannel. getReceiver()
Methods in org.jgroups with parameters of type Receiver Modifier and Type Method Description JChannel
JChannel. receiver(Receiver r)
void
Channel. setReceiver(Receiver r)
Deprecated.Sets the receiver for this channel.JChannel
JChannel. setReceiver(Receiver r)
-
Uses of Receiver in org.jgroups.blocks
Classes in org.jgroups.blocks that implement Receiver Modifier and Type Class Description class
ReplicatedTree
A tree-like structure that is replicated across several members. -
Uses of Receiver in org.jgroups.demos
Classes in org.jgroups.demos that implement Receiver Modifier and Type Class Description class
Chat
class
Draw
Shared whiteboard, each new instance joins the same group.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 Receiver in org.jgroups.protocols
Classes in org.jgroups.protocols that implement Receiver Modifier and Type Class Description protected class
RELAY.Receiver
Deprecated. -
Uses of Receiver in org.jgroups.protocols.relay
Classes in org.jgroups.protocols.relay that implement Receiver Modifier and Type Class Description protected class
Relayer.Bridge
-
Uses of Receiver in org.jgroups.util
Classes in org.jgroups.util that implement Receiver Modifier and Type Class Description class
MyReceiver<T>
Generic receiver for a JChannel
-