01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.msg;
05:
06: /**
07: * Constants for lock requests
08: */
09: public interface LockRequestMessageConsts {
10:
11: /**
12: * Uninitialized time to wait (value=-1)
13: */
14: public final static int UNITIALIZED_WAIT_TIME = -1;
15:
16: }
|