Package io.vertigo.core.node.component
Interface Activeable
-
- All Known Implementing Classes:
ComponentSpaceWritable
,DaemonManagerImpl
,SocketLoggerAnalyticsConnectorPlugin
,SocketLoggerJsonAnalyticsConnectorPlugin
public interface Activeable
The Activeable class allows you to provide a behavior to a component. The methods start() and stop() are called after the creation and before the destruction of the managed components.- Author:
- pchretien
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
start()
Called after the component has been created and filled by injection (for the components built by configuration).void
stop()
Called before the component is stopped.
-