01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.lockmanager.api;
05:
06: import com.tc.object.lockmanager.api.LockID;
07: import com.tc.object.lockmanager.api.ServerThreadID;
08:
09: import java.io.Serializable;
10:
11: /**
12: * A portion of a deadlock chain
13: */
14: public interface DeadlockChain extends Serializable {
15: public ServerThreadID getWaiter();
16:
17: public DeadlockChain getNextLink();
18:
19: public LockID getWaitingOn();
20: }
|