| org.picocontainer.Disposable
Disposable | public interface Disposable (Code) | | An interface which is implemented by components that need to dispose of resources during the shutdown of that
component. The
Disposable.dispose must be called once during shutdown, directly after
Startable.stop (if the component implements the
Startable interface).
See Also: org.picocontainer.Startable See Also: the Startable interface if you need to start() and See Also: stop() semantics. See Also: org.picocontainer.PicoContainer See Also: the main PicoContainer interface (and hence its subinterfaces and See Also: implementations like DefaultPicoContainer See Also: ) implement this interface. |
Method Summary | |
void | dispose() Dispose this component. |
dispose | void dispose()(Code) | | Dispose this component. The component should deallocate all resources. The contract for this method defines a
single call at the end of this component's life.
|
|
|