Interface IServerListener


  • public interface IServerListener
    A Server listener
    Since:
    28.07.2006
    API:
    This is a public API.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void serverProgress​(int amoutProgressed, String description)
      Called if an amount of work has been progressed
      void serverStarted()
      Called if the server has started and now is running
      void serverStarting​(int amountToStart)
      Called if the server is stopped and now begins with starting
      void serverStopped()
      Called if the server has stopped
      void serverStopping​(int amountToStop)
      Called if the server is running and now begins with stopping
    • Method Detail

      • serverStarted

        void serverStarted()
        Called if the server has started and now is running
        API:
        This public API is available in Java.
      • serverStopped

        void serverStopped()
        Called if the server has stopped
        API:
        This public API is available in Java.
      • serverStarting

        void serverStarting​(int amountToStart)
        Called if the server is stopped and now begins with starting
        Parameters:
        amountToStart - the amount of internal elements to start
        API:
        This public API is available in Java.
      • serverStopping

        void serverStopping​(int amountToStop)
        Called if the server is running and now begins with stopping
        Parameters:
        amountToStop - the amount of internal elements to stop
        API:
        This public API is available in Java.
      • serverProgress

        void serverProgress​(int amoutProgressed,
                            String description)
        Called if an amount of work has been progressed
        Parameters:
        amoutProgressed - the amount of work progressed
        description - an description of the work that now are going to progressed
        API:
        This public API is available in Java.