Class ServerListenerAdapter

  • All Implemented Interfaces:
    java.util.EventListener, ServerListener

    public class ServerListenerAdapter
    extends java.lang.Object
    implements ServerListener
    Created 02.10.12 15:24
    Author:
    Eugene Petrenko (eugene.petrenko@jetbrains.com)
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void serverShutdown()
      Called when server shutdown has been started.
      void serverStartup()
      Called when server has been started and its configuration has been loaded from the disk
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ServerListenerAdapter

        public ServerListenerAdapter()
    • Method Detail

      • serverShutdown

        public void serverShutdown()
        Description copied from interface: ServerListener
        Called when server shutdown has been started. In addition, this method is called for a plugin before it is unloaded, may be used for releasing resources and cleanup.
        Specified by:
        serverShutdown in interface ServerListener
      • serverStartup

        public void serverStartup()
        Description copied from interface: ServerListener
        Called when server has been started and its configuration has been loaded from the disk
        Specified by:
        serverStartup in interface ServerListener