Package org.cometd.bayeux.client
Interface ClientSession.MessageListener
-
- All Superinterfaces:
Bayeux.BayeuxListener
,java.util.EventListener
- Enclosing interface:
- ClientSession
public static interface ClientSession.MessageListener extends Bayeux.BayeuxListener
A listener for remote call messages.
-
-
Field Summary
Fields Modifier and Type Field Description static ClientSession.MessageListener
NOOP
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onMessage(Message message)
Callback invoked when a remote call response is received.
-
-
-
Field Detail
-
NOOP
static final ClientSession.MessageListener NOOP
-
-
Method Detail
-
onMessage
void onMessage(Message message)
Callback invoked when a remote call response is received.- Parameters:
message
- the remote call response
-
-