| org.apache.derby.iapi.services.locks.Limit
All known Subclasses: org.apache.derby.impl.store.raw.xact.Xact,
Limit | public interface Limit (Code) | | A limit represents a callback on a lock
group. It is called when the size of
the group reaches the limit set on the
call.
See Also: LockFactory.setLimit |
Method Summary | |
public void | reached(Object compatabilitySpace, Object group, int limit, Enumeration lockList, int lockCount) Called by the lock factory when a limit has been reached. |
reached | public void reached(Object compatabilitySpace, Object group, int limit, Enumeration lockList, int lockCount) throws StandardException(Code) | | Called by the lock factory when a limit has been reached.
Parameters: compatabilitySpace - lock space the limit was set for Parameters: group - lock group the limit was set for Parameters: limit - the limit's setting Parameters: lockList - the list of Lockable's in the group Parameters: lockCount - the number of locks in the group exception: StandardException - Standard Cloudscape error policy. |
|
|