Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ObjectPool |
|
| 1.0;1 |
1 | /* | |
2 | * $Id: ObjectPool.java 11376 2008-03-16 17:44:10Z dfeist $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.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 | } |