|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sleepycat.je.latch.LatchStats
public class LatchStats
A class that provides interesting stats about a particular latch.
Field Summary | |
---|---|
int |
nAcquireNoWaitSuccessful
Number of times acquireNoWait() was called when the latch was successfully acquired. |
int |
nAcquireNoWaitUnsuccessful
Number of unsuccessful acquireNoWait() calls. |
int |
nAcquireSharedSuccessful
Number of times acquireShared() was called when the latch was successfully acquired. |
int |
nAcquiresNoWaiters
|
int |
nAcquiresSelfOwned
Number of times acquire() was called when the latch was already owned by the caller. |
int |
nAcquiresUpgrade
Number of times acquire() was called with allowNesting=true when the latch was already owned by the caller for shared access. |
int |
nAcquiresWithContention
Number of times acquire() was called when the latch was already owned by the some other thread. |
int |
nReleases
Numbed of calls to release(); |
Constructor Summary | |
---|---|
LatchStats()
|
Method Summary | |
---|---|
Object |
clone()
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public int nAcquiresNoWaiters
public int nAcquiresSelfOwned
public int nAcquiresUpgrade
public int nAcquiresWithContention
public int nAcquireNoWaitSuccessful
public int nAcquireNoWaitUnsuccessful
public int nAcquireSharedSuccessful
public int nReleases
Constructor Detail |
---|
public LatchStats()
Method Detail |
---|
public String toString()
toString
in class Object
public Object clone() throws CloneNotSupportedException
clone
in class Object
CloneNotSupportedException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |