Interface | Description |
---|---|
IBasicLifecycle |
Combines interfaces IInitializable and IDisposable
|
IDisposable |
This interface specifies just a dispose() method an object must understand
to dispose its internal resources.
This is more or less the same as IReleasable. |
IInitializable |
Generic no argument initialization
|
IReleasable |
This interface specifies just a release() method an object must understand
to release its internal resources.
This is more or less the same as IDisposable. |
IResettable |
To be implemented by objects that can be reset.
|
ISystemExitListener |
An implementor of this interface can be added to a listener list that
|