| java.lang.Object com.tc.objectserver.lockmanager.impl.LockTimer
notifyAddPending | public synchronized void notifyAddPending(int waiterCount, LockAwardContext ctxt)(Code) | | If the waiter count is 1, then this is the first waiter. We should schedule a timeout for this lock award context.
Otherwise, we shouldn't do anything.
|
notifyAward | public synchronized void notifyAward(int waiterCount, LockAwardContext ctxt)(Code) | | If the waiter count is greater than zero, we should schedule a timeout for this lock award context. Otherwise, we
shouldn't do anything.
|
notifyRevoke | public synchronized void notifyRevoke(LockAwardContext ctxt)(Code) | | We should cancel any existing timers for the given lock award context.
|
|
|