Class ConnectionPool.ConnectionFuture
java.lang.Object
org.apache.tomcat.jdbc.pool.ConnectionPool.ConnectionFuture
- All Implemented Interfaces:
 Runnable, Future<Connection>
- Enclosing class:
 ConnectionPool
protected class ConnectionPool.ConnectionFuture
extends Object
implements Future<Connection>, Runnable
Thread safe wrapper around a future for the regular queue
This one retrieves the pooled connection object
and performs the initialization according to
interceptors and validation rules.
This class is thread safe and is cancellable
- 
Nested Class Summary
Nested classes/interfaces inherited from interface Future
Future.State - 
Constructor Summary
ConstructorsConstructorDescription - 
Method Summary
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Future
exceptionNow, resultNow, state 
- 
Constructor Details
- 
ConnectionFuture
 - 
ConnectionFuture
- Throws:
 SQLException
 
 - 
 - 
Method Details
- 
cancel
public boolean cancel(boolean mayInterruptIfRunning) - Specified by:
 cancelin interfaceFuture<Connection>
 - 
get
- Specified by:
 getin interfaceFuture<Connection>- Throws:
 InterruptedExceptionExecutionException
 - 
get
public Connection get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException - Specified by:
 getin interfaceFuture<Connection>- Throws:
 InterruptedExceptionExecutionExceptionTimeoutException
 - 
isCancelled
public boolean isCancelled()- Specified by:
 isCancelledin interfaceFuture<Connection>
 - 
isDone
public boolean isDone()- Specified by:
 isDonein interfaceFuture<Connection>
 - 
run
 
 -