|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object tyrex.resource.jca.PoolEntry
Represents an entry in the connection pool.
Field Summary | |
protected boolean |
_available
True if this connection is available, false if currently in use. |
protected int |
_hashCode
The hash code for this entry. |
protected javax.resource.spi.LocalTransaction |
_localTx
The local transaction associated with this connection. |
protected javax.resource.spi.ManagedConnection |
_managed
The pooled connection associated with this entry. |
protected PoolEntry |
_nextEntry
Reference to the next connection entry in hash table. |
protected long |
_timeStamp
The timestamp for a used connection returns the clock time at which the connection was made available to the application. |
protected javax.transaction.xa.XAResource |
_xaResource
The XA resource associated with this connection. |
Constructor Summary | |
protected |
PoolEntry(javax.resource.spi.ManagedConnection managed,
int hashCode,
javax.transaction.xa.XAResource xaResource,
javax.resource.spi.LocalTransaction localTx)
Constructs a new pool entry. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected final javax.resource.spi.ManagedConnection _managed
protected final int _hashCode
protected PoolEntry _nextEntry
protected boolean _available
protected final javax.transaction.xa.XAResource _xaResource
protected final javax.resource.spi.LocalTransaction _localTx
protected long _timeStamp
Constructor Detail |
protected PoolEntry(javax.resource.spi.ManagedConnection managed, int hashCode, javax.transaction.xa.XAResource xaResource, javax.resource.spi.LocalTransaction localTx)
managed
- The managed connectionhashCode
- The managed connection hash codexaResource
- The XA resource interface, or nulllocalTx
- The local transaction, or null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |