KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > object > lockmanager > api > WaitTimer


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.object.lockmanager.api;
5
6 import com.tc.object.tx.WaitInvocation;
7
8 import java.util.Timer JavaDoc;
9 import java.util.TimerTask JavaDoc;
10
11
12 public interface WaitTimer {
13   
14   public TimerTask JavaDoc scheduleTimer(WaitTimerCallback callback, WaitInvocation call, Object JavaDoc callbackObject);
15   
16   public void shutdown();
17
18   public Timer JavaDoc getTimer();
19
20 }
21
22
Popular Tags