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.object.lockmanager.api;
05:
06: import com.tc.object.tx.WaitInvocation;
07:
08: import java.util.Timer;
09: import java.util.TimerTask;
10:
11: public interface WaitTimer {
12:
13: public TimerTask scheduleTimer(WaitTimerCallback callback,
14: WaitInvocation call, Object callbackObject);
15:
16: public void shutdown();
17:
18: public Timer getTimer();
19:
20: }
|