|
PicoContainer example source code file (Disposable.java)
The PicoContainer Disposable.java source code
/*****************************************************************************
* Copyright (c) PicoContainer Organization. All rights reserved. *
* ------------------------------------------------------------------------- *
* The software in this package is published under the terms of the BSD *
* style license a copy of which has been included with this distribution in *
* the license.html file. *
* *
* Idea by Rachel Davies, Original code by Aslak Hellesoy and Paul Hammant *
*****************************************************************************/
package org.picocontainer;
/**
* An interface which is implemented by components that need to dispose of resources during the shutdown of that
* component. The {@link Disposable#dispose()} must be called once during shutdown, directly after {@link
* Startable#stop()} (if the component implements the {@link Startable} interface).
* @version $Revision: 3602 $
* @see org.picocontainer.Startable the Startable interface if you need to <code>start() and
* <code>stop() semantics.
* @see org.picocontainer.PicoContainer the main PicoContainer interface (and hence its subinterfaces and
* implementations like {@link DefaultPicoContainer}) implement this interface.
*/
public interface Disposable {
/**
* 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.
*/
void dispose();
}
Other PicoContainer examples (source code examples)Here is a short list of links related to this PicoContainer Disposable.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.