|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LockLevel | |
---|---|
com.tc.object.bytecode | |
com.tc.object.locks |
Uses of LockLevel in com.tc.object.bytecode |
---|
Methods in com.tc.object.bytecode with parameters of type LockLevel | |
---|---|
int |
NullManager.globalHoldCount(LockID lock,
LockLevel level)
|
boolean |
NullManager.isLocked(LockID lock,
LockLevel level)
|
boolean |
NullManager.isLockedByCurrentThread(LockID lock,
LockLevel level)
|
boolean |
NullManager.isLockedByCurrentThread(LockLevel level)
|
int |
NullManager.localHoldCount(LockID lock,
LockLevel level)
|
void |
NullManager.lock(LockID lock,
LockLevel level)
|
void |
NullManager.lockInterruptibly(LockID lock,
LockLevel level)
|
void |
NullManager.monitorEnter(LockID lock,
LockLevel level)
|
void |
Manager.monitorEnter(LockID lock,
LockLevel level)
Used by instrumented code to perform a clustered monitorenter . |
void |
NullManager.monitorExit(LockID lock,
LockLevel level)
|
void |
Manager.monitorExit(LockID lock,
LockLevel level)
Used by instrumented code to perform a clustered monitorexit . |
boolean |
NullManager.tryLock(LockID lock,
LockLevel level)
|
boolean |
NullManager.tryLock(LockID lock,
LockLevel level,
long timeout)
|
void |
NullManager.unlock(LockID lock,
LockLevel level)
|
Uses of LockLevel in com.tc.object.locks |
---|
Methods in com.tc.object.locks that return LockLevel | |
---|---|
static LockLevel |
LockLevel.fromInt(int integer)
|
static LockLevel |
LockLevel.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LockLevel[] |
LockLevel.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in com.tc.object.locks with parameters of type LockLevel | |
---|---|
int |
TerracottaLocking.globalHoldCount(LockID lock,
LockLevel level)
Return the count of global (cluster-wide) holders at the given lock level. |
boolean |
TerracottaLocking.isLocked(LockID lock,
LockLevel level)
Return true if the given lock is held by any thread at the given lock level. |
boolean |
TerracottaLocking.isLockedByCurrentThread(LockID lock,
LockLevel level)
Return true if the given lock is held by the current thread at the given lock level. |
boolean |
TerracottaLocking.isLockedByCurrentThread(LockLevel level)
Return true if any lock is held by the current thread at the given lock level. |
int |
TerracottaLocking.localHoldCount(LockID lock,
LockLevel level)
Return the count of local (on this client VM) holders at the given lock level. |
void |
TerracottaLocking.lock(LockID lock,
LockLevel level)
Blocking acquire of a Terracotta lock. |
void |
TerracottaLocking.lockInterruptibly(LockID lock,
LockLevel level)
Interruptible acquire of a Terracotta lock. |
boolean |
TerracottaLocking.tryLock(LockID lock,
LockLevel level)
Try to acquire a Terracotta lock. |
boolean |
TerracottaLocking.tryLock(LockID lock,
LockLevel level,
long timeout)
Timed acquire of a Terracotta lock. |
void |
TerracottaLocking.unlock(LockID lock,
LockLevel level)
Blocking unlock of a Terracotta lock. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |