📄 shutdownhook.java
字号:
/* * ShutdownHook.java * * Created on April 21, 2005, 10:14 AM */package jwsgrid.scheduler.priv;import jwsgrid.scheduler.Scheduler;/** * * @author sean */public class ShutdownHook implements Runnable { private Scheduler sched = null; /** Creates a new instance of ShutdownHook */ public ShutdownHook( Scheduler sched ) { this.sched = sched; } public void run() { sched.stop( true ); while ( !sched.shutdownComplete() ) { try { Thread.sleep( 1000 ); } catch ( InterruptedException ie ) {} } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -