Package org.cometd.bayeux.server
Interface ServerSession.HeartBeatListener
- All Superinterfaces:
org.cometd.bayeux.Bayeux.BayeuxListener,EventListener,ServerSession.ServerSessionListener
- Enclosing interface:
- ServerSession
Listeners objects that implement this interface will be notified when a /meta/connect
message is suspended by the server, and when it is subsequently resumed.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidonResumed(ServerSession session, ServerMessage message, boolean timeout) Callback invoked to notify that a/meta/connectmessage has been resumed.default voidonSuspended(ServerSession session, ServerMessage message, long timeout) Callback invoked to notify that a/meta/connectmessage has been suspended.
-
Method Details
-
onSuspended
Callback invoked to notify that a
/meta/connectmessage has been suspended.- Parameters:
session- the session that received the/meta/connectmessagemessage- the/meta/connectmessagetimeout- the time, in milliseconds, the server will hold the message if not otherwise resumed
-
onResumed
Callback invoked to notify that a
/meta/connectmessage has been resumed.- Parameters:
session- the session that received the/meta/connectmessagemessage- the/meta/connectmessagetimeout- whether the/meta/connectmessage was resumed after the whole timeout
-