Package org.eclipse.jetty.util.component
Interface Destroyable
-
- All Known Subinterfaces:
Handler
- All Known Implementing Classes:
AbstractConnectionFactory
,AbstractConnectionPool
,AbstractConnector
,AbstractConnectorHttpClientTransport
,AbstractHandler
,AbstractHandler.ErrorDispatchHandler
,AbstractHandlerContainer
,AbstractHttpClientTransport
,AbstractLoginService
,AbstractNCSARequestLog
,AbstractNetworkConnector
,AbstractSessionCache
,AbstractSessionDataStore
,AsyncDelayHandler
,AsyncNCSARequestLog
,AttributeContainerMap
,BufferedResponseHandler
,CachingSessionDataStore
,ConfigurableSpnegoLoginService
,ConnectionManager
,ConstraintSecurityHandler
,ContainerLifeCycle
,ContextHandler
,ContextHandlerCollection
,CustomRequestLog
,CyclicTimeout
,CyclicTimeouts
,DebugHandler
,DefaultHandler
,DefaultSessionCache
,DefaultSessionIdManager
,DetectorConnectionFactory
,DuplexConnectionPool
,EatWhatYouKill
,ErrorHandler
,ErrorPageErrorHandler
,ExecutorSizedThreadPool
,ExecutorThreadPool
,ExtensionStack
,FileBufferedResponseHandler
,FileDestroyable
,FileSessionDataStore
,GZIPContentDecoder
,GZIPContentDecoder
,GzipHandler
,GzipHttpInputInterceptor
,HandlerCollection
,HandlerList
,HandlerWrapper
,HashLoginService
,HotSwapHandler
,HttpClient
,HttpClientTransportOverHTTP
,HttpConnectionFactory
,HttpDestination
,HttpDestinationOverHTTP
,HttpInput.ChainedInterceptor
,IdleTimeoutHandler
,InetAccessHandler
,IPAccessHandler
,JDBCLoginService
,JDBCSessionDataStore
,KeyStoreScanner
,LeakTrackingByteBufferPool
,LeakTrackingConnectionPool
,LocalConnector
,LowResourceMonitor
,ManagedSelector
,MBeanContainer
,MonitoredQueuedThreadPool
,MovedContextHandler
,MultiplexConnectionPool
,MultiplexHttpDestination
,NativeWebSocketConfiguration
,NCSARequestLog
,NegotiatingServerConnectionFactory
,NetworkTrafficSelectChannelConnector
,NetworkTrafficServerConnector
,NullSessionCache
,NullSessionDataStore
,OptionalSslConnectionFactory
,PoolingHttpDestination
,ProxyConnectionFactory
,QueuedThreadPool
,RandomConnectionPool
,RequestLogHandler
,ResourceHandler
,RoundRobinConnectionPool
,ScopedHandler
,SecuredRedirectHandler
,SecurityHandler
,SelectorManager
,Server
,ServerConnector
,ServletContextHandler
,ServletHandler
,SessionHandler
,ShutdownHandler
,SimpleContainerScope
,Slf4jRequestLog
,SslConnectionFactory
,StatisticsHandler
,ThreadLimitHandler
,TimeoutCompleteListener
,ValidatingConnectionPool
,WebAppContext
,WebSocketClient
,WebSocketHandler
,WebSocketHandler.Simple
,WebSocketServerFactory
,WebSocketSession
,WebSocketUpgradeHandlerWrapper
@ManagedObject @Deprecated(since="2021-05-27") public interface Destroyable
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A Destroyable is an object which can be destroyed.
Typically a Destroyable is a
LifeCycle
component 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 Deprecated Methods Modifier and Type Method Description void
destroy()
Deprecated.
-
-
-
Method Detail
-
destroy
@ManagedOperation(value="Destroys this component", impact="ACTION") void destroy()
Deprecated.
-
-