public static interface ServerSession.MessageListener extends ServerSession.ServerSessionListener
Listeners objects that implement this interface will be notified of message sending.
Modifier and Type | Method and Description |
---|---|
boolean |
onMessage(ServerSession session,
ServerSession sender,
ServerMessage message)
Callback invoked when a message is sent.
|
boolean onMessage(ServerSession session, ServerSession sender, ServerMessage message)
Callback invoked when a message is sent.
Implementers can decide to return false to signal that the message should not be further processed, meaning that other session listeners will not be notified and that the message will be discarded for this session.
session
- the session that will receive the messagesender
- the session that sent the messagemessage
- the message sentCopyright © 2008–2017 The CometD Project. All rights reserved.