com.atomikos.datasource.pool.XPooledConnection Maven / Gradle / Ivy
/**
* Copyright (C) 2000-2016 Atomikos
*
* LICENSE CONDITIONS
*
* See http://www.atomikos.com/Main/WhichLicenseApplies for details.
*/
package com.atomikos.datasource.pool;
/**
* A pooling-capable object wrapping a physical connection to an underlying resource.
*/
public interface XPooledConnection
{
/**
* Is the connection available to be taken out of the pool ?
* @return
*/
boolean isAvailable();
/**
* Can the connection be recycled (if not available) for the calling thread?
* @return
*/
public boolean canBeRecycledForCallingThread();
/**
* Destroy the pooled connection by closing the underlying physical connection.
*/
void destroy();
/**
* Invalidates (i.e., forces close) of the current connection proxy
* This does not mean that the connection can be reused immediately:
* pending transactions may exist that need to terminate.
*
* In other words: this acts as a forced close on the proxy.
*/
void reap();
/**
* Get the last time the connection was acquired.
* @return
*/
long getLastTimeAcquired();
/**
* Get the last time the connection was released, i.e. the last time when
* it has become available.
* @return
*/
long getLastTimeReleased();
/**
* Create a disposable connection object that acts a controller for
* the pooled connection. What exactly a connection object is depends
* on the implementation.
* @return
* @throws CreateConnectionException
*/
Reapable createConnectionProxy() throws CreateConnectionException;
/**
* Is the pooled connection broken ?
* @return
*/
boolean isErroneous();
/**
* Get the moment when the connection was created.
* @return
*/
long getCreationTime();
void registerXPooledConnectionEventListener(XPooledConnectionEventListener listener);
void unregisterXPooledConnectionEventListener(XPooledConnectionEventListener listener);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy