All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.picocontainer.ComponentLifecycle Maven / Gradle / Ivy

/*****************************************************************************
 * 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.txt file.                                                     *
 *                                                                           *
 *****************************************************************************/
package org.picocontainer;

/**
 * 
 *
 */
public interface ComponentLifecycle {

    /**
     * Invoke the "start" method on the component.
     *
     * @param container the container to "start" the component
     */
    void start(PicoContainer container);

    /**
     * Invoke the "stop" method on the component.
     *
     * @param container the container to "stop" the component
     */
    void stop(PicoContainer container);

    /**
     * Invoke the "dispose" method on the component.
     *
     * @param container the container to "dispose" the component
     */
    void dispose(PicoContainer container);

    /**
     * Test if a component honors a lifecycle.
     *
     * @return true if the component has a lifecycle
     */
    boolean componentHasLifecycle();

    boolean isStarted();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy