Interface Implementor

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void dispose()
      This method is called on each Implementor when a flow is being stopped and removed from the runtime.
      default void initialize()
      This method is called right after the Implementor object is being instantiated by the runtime, when a flow is being built.
    • Method Detail

      • initialize

        default void initialize()
        This method is called right after the Implementor object is being instantiated by the runtime, when a flow is being built. Override it to perform initial resources allocation before the component is being used.
      • dispose

        default void dispose()
        This method is called on each Implementor when a flow is being stopped and removed from the runtime. Override it to cleanup previously initialized resources before removing it from the runtime.