01: /*
02: * JFox - The most lightweight Java EE Application Server!
03: * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.
04: *
05: * JFox is licenced and re-distributable under GNU LGPL.
06: */
07: package jfox.test.ejb3.timer;
08:
09: public interface ExampleTimer {
10: /**
11: * EJB 方法,用æ?¥æ??交定时任务
12: */
13: void scheduleTimer(long milliseconds);
14: }
|