Package org.jgroups.protocols
Class RELAY.Receiver
- java.lang.Object
- 
- org.jgroups.ReceiverAdapter
- 
- org.jgroups.protocols.RELAY.Receiver
 
 
- 
- All Implemented Interfaces:
- MembershipListener,- MessageListener,- Receiver,- StateListener
 - Enclosing class:
- RELAY
 
 protected class RELAY.Receiver extends ReceiverAdapter 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedReceiver()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreceive(Message msg)Called when a message is received.voidviewAccepted(View view)Called when a change in membership has occurred.
 
- 
- 
- 
Method Detail- 
receivepublic void receive(Message msg) Description copied from interface:MessageListenerCalled when a message is received.- Specified by:
- receivein interface- MessageListener
- Overrides:
- receivein class- ReceiverAdapter
 
 - 
viewAcceptedpublic void viewAccepted(View view) Description copied from interface:MembershipListenerCalled when a change in membership has occurred. No long running actions, sending of messages or anything that could block should be done in this callback. If some long running action needs to be performed, it should be done in a separate thread. Note that on reception of the first view (a new member just joined), the channel will not yet be in the connected state. This only happens whenJChannel.connect(String)returns.- Specified by:
- viewAcceptedin interface- MembershipListener
- Overrides:
- viewAcceptedin class- ReceiverAdapter
 
 
- 
 
-