Class JComponentHandlers


  • public abstract class JComponentHandlers
    extends csw.framework.scaladsl.ComponentHandlers
    Base class for component handlers which will be used by the component actor

    param: ctx the ActorContext under which the actor instance of the component, which use these handlers, is created param: cswCtx provides access to csw services e.g. location, event, alarm, etc

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      scala.concurrent.ExecutionContextExecutor ec()  
      void initialize()
      Invokes the java helper (jInitialize) to initialize the component
      abstract void jInitialize()
      A Java helper that is invoked when the component is created.
      abstract void jOnShutdown()
      The onShutdown handler can be used for carrying out the tasks which will allow the component to shutdown gracefully
      void onShutdown()
      Invokes the java helper (jOnShutdown) to shutdown the component
      • Methods inherited from class csw.framework.scaladsl.ComponentHandlers

        isOnline, isOnline_$eq, onDiagnosticMode, onGoOffline, onGoOnline, onLocationTrackingEvent, onOneway, onOperationsMode, onSubmit, trackConnection, validateCommand
      • Methods inherited from class java.lang.Object

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

      • ec

        public scala.concurrent.ExecutionContextExecutor ec()
      • initialize

        public void initialize()
        Invokes the java helper (jInitialize) to initialize the component

        Note: do not override this from java class

        Specified by:
        initialize in class csw.framework.scaladsl.ComponentHandlers
      • jInitialize

        public abstract void jInitialize()
        A Java helper that is invoked when the component is created. The component can initialize state such as configuration to be fetched from configuration service, location of components or services to be fetched from location service etc. These vary from component to component.

      • jOnShutdown

        public abstract void jOnShutdown()
        The onShutdown handler can be used for carrying out the tasks which will allow the component to shutdown gracefully

      • onShutdown

        public void onShutdown()
        Invokes the java helper (jOnShutdown) to shutdown the component

        Note: do not override this from java class

        Specified by:
        onShutdown in class csw.framework.scaladsl.ComponentHandlers