Interface SimonSessionListener


public interface SimonSessionListener
Interface for notifying an application about SIMON session events, managed by Dispatcher.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    simonSessionClosed(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
    Called when the MINA session associated with the SIMON connection is closed.
    void
    simonSessionCreated(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
    Called when a session is created
    void
    simonSessionOpened(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
    Called when a session is opened
  • Method Details

    • simonSessionClosed

      void simonSessionClosed(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
      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

      void simonSessionCreated(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
      Called when a session is created
      Parameters:
      session - The session created.
      dispatcher - Dispatcher.
    • simonSessionOpened

      void simonSessionOpened(org.apache.mina.core.session.IoSession session, Dispatcher dispatcher)
      Called when a session is opened
      Parameters:
      session - The opened session.
      dispatcher - Dispatcher.