Interface Implementor
-
- All Known Subinterfaces:
Component,Inbound,Join,ProcessorAsync,ProcessorSync
- All Known Implementing Classes:
AbstractInbound
public interface Implementor
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voiddispose()This method is called on each Implementor when a flow is being stopped and removed from the runtime.default voidinitialize()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.
-
-