Interface ILifecycle

All Known Subinterfaces:
IApplicationConfigurationManager, ch.ivyteam.ivy.manager.IManager, IServerExtension

public interface ILifecycle
An interface that is implemented by classes that can be started and stopped.
Since:
04.12.2006
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the name of the thing to start
    void
    Starts the thing.
    void
    Stops the thing.
  • Method Details

    • start

      void start()
      Starts the thing.
      API:
      This public API is available in Java.
    • stop

      void stop()
      Stops the thing.
      API:
      This public API is available in Java.
    • getName

      String getName()
      Gets the name of the thing to start
      Returns:
      name
      API:
      This public API is available in Java.