01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.lockmanager.api;
06:
07: import com.tc.net.groups.ClientID;
08: import com.tc.object.tx.WaitInvocation;
09:
10: public class TryLockContext extends WaitContext {
11: public TryLockContext() {
12: return;
13: }
14:
15: public TryLockContext(LockID lockID, ClientID clientID,
16: ThreadID threadID, int lockLevel,
17: WaitInvocation waitInvocation) {
18: super(lockID, clientID, threadID, lockLevel, waitInvocation);
19: }
20: }
|