Interface ActorSystemProviderListener

All Superinterfaces:
EventListener

public interface ActorSystemProviderListener extends EventListener
Listener interface for notification of ActorSystem changes from an ActorSystemProvider.
Author:
Thomas Pantelis
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Method called when the current actor system is shutdown and a new actor system is created.
    void
    Method called when the current actor system is about to be shutdown.
  • Method Details

    • onPreShutdownActorSystem

      void onPreShutdownActorSystem()
      Method called when the current actor system is about to be shutdown.
    • onNewActorSystem

      void onNewActorSystem(ActorSystem actorSytem)
      Method called when the current actor system is shutdown and a new actor system is created. This method is always preceded by a call to onPreShutdownActorSystem().
      Parameters:
      actorSytem - the new ActorSystem