Interface ServerSessionEventListener

All Known Implementing Classes:
SoftwareServerVersionManager

public interface ServerSessionEventListener
Interface to listen for server session events (s2s). Use the ServerSessionEventDispatcher.addListener(ServerSessionEventListener) method to register for events.
Author:
Manasse Ngudia manasse@mnsuccess.com
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notification event indicating that a server has connected with the server.
    void
    A connected session of a server was destroyed.
  • Method Details

    • sessionCreated

      void sessionCreated(Session session)
      Notification event indicating that a server has connected with the server.
      Parameters:
      session - the connected session of a server
    • sessionDestroyed

      void sessionDestroyed(Session session)
      A connected session of a server was destroyed.
      Parameters:
      session - the connected session of a server.