T
- the type of object in the poolpublic interface PooledObject<T> extends java.lang.Comparable<PooledObject<T>>
Implementations of this class are required to be thread-safe.
限定符和类型 | 方法和说明 |
---|---|
boolean |
allocate()
Allocates the object.
|
int |
compareTo(PooledObject<T> other)
Orders instances based on idle time - i.e. the length of time since the
instance was returned to the pool.
|
boolean |
deallocate()
|
boolean |
endEvictionTest(java.util.Deque<PooledObject<T>> idleQueue)
Called to inform the object that the eviction test has ended.
|
boolean |
equals(java.lang.Object obj) |
default java.time.Duration |
getActiveTime()
Gets the amount of time this object last spent in the
active state (it may still be active in which case subsequent calls will
return an increased value).
|
long |
getActiveTimeMillis()
Gets the amount of time in milliseconds this object last spent in the
active state (it may still be active in which case subsequent calls will
return an increased value).
|
default long |
getBorrowedCount()
Gets the number of times this object has been borrowed.
|
long |
getCreateTime()
Gets the time (using the same basis as
System.currentTimeMillis() ) that this object was created. |
default java.time.Duration |
getIdleTime()
Gets the amount of time that this object last spend in the
idle state (it may still be idle in which case subsequent calls will
return an increased value).
|
long |
getIdleTimeMillis()
Gets the amount of time in milliseconds that this object last spend in the
idle state (it may still be idle in which case subsequent calls will
return an increased value).
|
long |
getLastBorrowTime()
Gets the time the wrapped object was last borrowed.
|
long |
getLastReturnTime()
Gets the time the wrapped object was last returned.
|
long |
getLastUsedTime()
Gets an estimate of the last time this object was used.
|
T |
getObject()
Gets the underlying object that is wrapped by this instance of
PooledObject . |
PooledObjectState |
getState()
Gets the state of this object.
|
int |
hashCode() |
void |
invalidate()
Sets the state to
INVALID |
void |
markAbandoned()
Marks the pooled object as abandoned.
|
void |
markReturning()
Marks the object as returning to the pool.
|
void |
printStackTrace(java.io.PrintWriter writer)
Prints the stack trace of the code that borrowed this pooled object and
the stack trace of the last code to use this object (if available) to
the supplied writer.
|
void |
setLogAbandoned(boolean logAbandoned)
Is abandoned object tracking being used?
|
default void |
setRequireFullStackTrace(boolean requireFullStackTrace)
Configures the stack trace generation strategy based on whether or not fully detailed stack traces are required.
|
boolean |
startEvictionTest()
Attempts to place the pooled object in the
PooledObjectState.EVICTION state. |
java.lang.String |
toString()
Provides a String form of the wrapper for debug purposes.
|
void |
use()
Record the current stack trace as the last time the object was used.
|
boolean allocate()
true
if the original state was IDLE
int compareTo(PooledObject<T> other)
Note: This class has a natural ordering that is inconsistent with equals if distinct objects have the same identity hash code.
compareTo
在接口中 java.lang.Comparable<PooledObject<T>>
boolean deallocate()
true
if the state was ALLOCATED
boolean endEvictionTest(java.util.Deque<PooledObject<T>> idleQueue)
idleQueue
- The queue of idle objects to which the object should be
returnedboolean equals(java.lang.Object obj)
equals
在类中 java.lang.Object
default java.time.Duration getActiveTime()
long getActiveTimeMillis()
default long getBorrowedCount()
long getCreateTime()
System.currentTimeMillis()
) that this object was created.default java.time.Duration getIdleTime()
long getIdleTimeMillis()
long getLastBorrowTime()
long getLastReturnTime()
long getLastUsedTime()
TrackedUse
, what is returned is
the maximum of TrackedUse.getLastUsed()
and
getLastBorrowTime()
; otherwise this method gives the same
value as getLastBorrowTime()
.T getObject()
PooledObject
.PooledObjectState getState()
int hashCode()
hashCode
在类中 java.lang.Object
void invalidate()
INVALID
void markAbandoned()
void markReturning()
void printStackTrace(java.io.PrintWriter writer)
writer
- The destination for the debug outputvoid setLogAbandoned(boolean logAbandoned)
logAbandoned
- The new configuration setting for abandoned
object trackingdefault void setRequireFullStackTrace(boolean requireFullStackTrace)
requireFullStackTrace
- the new configuration setting for abandoned object loggingboolean startEvictionTest()
PooledObjectState.EVICTION
state.true
if the object was placed in the
PooledObjectState.EVICTION
state otherwise
false
java.lang.String toString()
toString
在类中 java.lang.Object
void use()