Package com.atlassian.bamboo.container
Interface Startable
-
- All Known Subinterfaces:
BuildPersisterDecorator
,Persister
- All Known Implementing Classes:
CachedBuildPersisterDecorator
,FileBasedPersister
,XStreamBuildPersister
public interface Startable
This interface is used to denote container components that need to be started.It contains the stop method as anything that needs to be started should also clean up when stopped.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isActive()
Indicates whether this is currently active.void
start()
Start the componentvoid
stop()
Stop the component and clean up any resources
-