Package host.anzo.simon
Interface SimonSessionListener
public interface SimonSessionListener
Interface for notifying an application about SIMON session events, managed by Dispatcher.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsimonSessionClosed(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher) Called when the MINA session associated with the SIMON connection is closed.voidsimonSessionCreated(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher) Called when a session is createdvoidsimonSessionOpened(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher) Called when a session is opened
-
Method Details
-
simonSessionClosed
Called when the MINA session associated with the SIMON connection is closed.- Parameters:
session- The MINA session that was closed.dispatcher- The Dispatcher that managed this session.
-
simonSessionCreated
Called when a session is created- Parameters:
session- The session created.dispatcher- Dispatcher.
-
simonSessionOpened
Called when a session is opened- Parameters:
session- The opened session.dispatcher- Dispatcher.
-