Package io.deephaven.server.session
Interface SessionListener
- All Known Implementing Classes:
DelegatingSessionListener
public interface SessionListener
Callbacks for the SessionService, to observe session lifecycles.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onSessionCreate
(SessionState session) When a new session is created and has been given a refresh token, this will be invoked.
-
Method Details
-
onSessionCreate
When a new session is created and has been given a refresh token, this will be invoked.SessionState.addOnCloseCallback(java.io.Closeable)
.- Parameters:
session
- the newly created session
-