📄 downloadscheduletask.java
字号:
package com.frontMachine.client;
import java.util.TimerTask;
import com.frontMachine.setting.RemoteHost;
import com.frontMachine.setting.ServerSetting;
public class DownloadScheduleTask extends TimerTask
{
private DownloadMan posSysMan;
private DownloadMan ICReaderSysMan;
public DownloadScheduleTask()
{
posSysMan = new DownloadMan((RemoteHost)ServerSetting.getInstance().getRemoteHostMap().get("UDSRV"),DownloadType.DOWNLOADTYPE_POS);
ICReaderSysMan = new DownloadMan((RemoteHost)ServerSetting.getInstance().getRemoteHostMap().get("UDSRV"),DownloadType.DOWNLOADTYPE_ICREADER);
}
public void run()
{
posSysMan.dispose();
ICReaderSysMan.dispose();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -