Interface XMPPServerListener

All Known Implementing Classes:
MultiUserChatServiceImpl, PresenceManagerImpl

public interface XMPPServerListener
Interface that let observers be notified when the server has been started or is about to be stopped. Use XMPPServer.addServerListener(XMPPServerListener) to add new listeners.
Author:
Gaston Dombiak
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notification message indicating that the server has been started.
    void
    Notification message indication that the server is about to be stopped.
  • Method Details

    • serverStarted

      void serverStarted()
      Notification message indicating that the server has been started. At this point all server modules have been initialized and started. Message sending and receiving is now possible. However, some plugins may still be pending to be loaded.
    • serverStopping

      void serverStopping()
      Notification message indication that the server is about to be stopped. At this point all modules are still running so all services are still available.