Coverage Report - org.mule.util.pool.ObjectPool
 
Classes in this File Line Coverage Branch Coverage Complexity
ObjectPool
N/A
N/A
1
 
 1  
 /*
 2  
  * $Id: ObjectPool.java 19191 2010-08-25 21:05:23Z tcarlson $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.util.pool;
 12  
 
 13  
 import org.mule.api.lifecycle.Disposable;
 14  
 import org.mule.api.lifecycle.Initialisable;
 15  
 import org.mule.api.object.ObjectFactory;
 16  
 
 17  
 /**
 18  
  * <code>ObjectPool</code> is a simple pooling interface for objects
 19  
  */
 20  
 public interface ObjectPool extends Initialisable, Disposable
 21  
 {
 22  
 
 23  
     Object borrowObject() throws Exception;
 24  
 
 25  
     void returnObject(Object object);
 26  
 
 27  
     int getNumActive();
 28  
 
 29  
     int getMaxActive();
 30  
 
 31  
     void clear();
 32  
 
 33  
     void close();
 34  
 
 35  
     void setObjectFactory(ObjectFactory objectFactory);
 36  
     
 37  
     ObjectFactory getObjectFactory();
 38  
 
 39  
 }