Interface ActivateCallback

All Known Implementing Classes:
CleaningActivateCallback, JMSServerManagerImpl

public interface ActivateCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    this is called after most of the services have been started but before any cluster resources or JMS resources have been
    default void
    this is called when all resources have been started including any JMS resources
    default void
    this is called when the server is stopping, after any network resources and clients are closed but before the rest of the resources
    default void
    this is called before any services are started when the server first initialised
    default void
    this is called when the server is stopping, before any resources or clients are closed/stopped
    default void
     
    default void
    This is called when the broker is stopped (no shutdown in place)
  • Method Details

    • preActivate

      default void preActivate()
      this is called before any services are started when the server first initialised
    • activated

      default void activated()
      this is called after most of the services have been started but before any cluster resources or JMS resources have been
    • deActivate

      default void deActivate()
      this is called when the server is stopping, after any network resources and clients are closed but before the rest of the resources
    • preDeActivate

      default void preDeActivate()
      this is called when the server is stopping, before any resources or clients are closed/stopped
    • activationComplete

      default void activationComplete()
      this is called when all resources have been started including any JMS resources
    • stop

      default void stop(ActiveMQServer server)
      This is called when the broker is stopped (no shutdown in place)
    • shutdown

      default void shutdown(ActiveMQServer server)