Package org.eclipse.jetty.util.component
Interface Destroyable
-
- All Known Implementing Classes:
AttributeContainerMap,ContainerLifeCycle,EatWhatYouKill,ExecutorSizedThreadPool,ExecutorThreadPool,FileDestroyable,MonitoredQueuedThreadPool,QueuedThreadPool
@ManagedObject public interface Destroyable
A Destroyable is an object which can be destroyed.
Typically a Destroyable is a
LifeCyclecomponent that can hold onto resources over multiple start/stop cycles. A call to destroy will release all resources and will prevent any further start/stop cycles from being successful.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddestroy()
-
-
-
Method Detail
-
destroy
@ManagedOperation(value="Destroys this component", impact="ACTION") void destroy()
-
-