public class Janitor
extends Object
implements HasCleanup
An agent that can be used to defer cleanup operations to a later time. Users much implement the HasCleanup interface.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public void |
cleanup()Invokes cleanup on all registered participants and clears the registry. |
|
public void |
register(HasCleanup object)Registers a cleanup participant to be closed later. |
Invokes cleanup on all registered participants and clears the registry.
Registers a cleanup participant to be closed later.
object - the cleanup participant to register