blob: d400c8d867a5678450f3037942e19616a0128ca3 [file] [log] [blame]
package org.apache.fulcrum.pool;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/**
* An interface for objects that can be pooled and recycled several times by
* different clients.
*
* @author <a href="mailto:ilkka.priha@simsoft.fi">Ilkka Priha</a>
* @version $Id$
*/
public interface Recyclable
{
/**
* Recycles the object for a new client. Recycle methods with parameters must be
* added to implementing object and they will be automatically called by pool
* implementations when the object is taken from the pool for a new client. The
* parameters must correspond to the parameters of the constructors of the
* object. For new objects, constructors can call their corresponding recycle
* methods whenever applicable. The recycle methods must call their super.
*/
public void recycle();
/**
* Disposes the object after use. The method is called when the object is
* returned to its pool. The dispose method must call its super.
*/
public void dispose();
/**
* Checks whether the recyclable has been disposed.
*
* @return true, if the recyclable is disposed.
*/
public boolean isDisposed();
}