如何在RCP Application/SWT中实现超时



如果工作台空闲时间(30分钟等),但我还不知道如何实现。有人有什么建议吗?

我有一个类似的需求,在那里我绞尽脑汁去实现它。

要求:

如果空闲一段预先配置的时间,请锁定"应用程序窗口"。

但是,我的是一个纯SWT application,在那里我可以完全控制CreateDispose——Shell

PFB是我的代码摘录,它有很好的文档记录,它可能会对您有所帮助或提供见解。

    //Boilerplate code for SWT Shell
   //Event loop modified in our case
   boolean readAndDispatch;
        while (!shell.isDisposed()) { //UI Thread continuously loop in Processing and waiting for Events until shell is disposed.
            try {
                readAndDispatch = shell.getDisplay().readAndDispatch(); // reads an Event and dispatches, also returns true if there is some work else false.
                if (!readAndDispatch) { //There is no work to do, means, System is idle
                    timer.schedule(worker, delay); // So, schedule a Timer which triggers some work(lock or logout code) after specified time(delay)
                    shell.getDisplay().sleep(); 
                } else{
                    timer.reschedule(delay); //This means System is not idle. So, reset your Timer
                }
            } catch (Throwable e) {
                log.error(ExceptionUtils.getStackTrace(e));
                MessageDialog.openError(shell, "Error !!", ExceptionUtils.getRootCauseMessage(e));
            }
        }

注意

我有一个自定义的java.util.Timer实现,通过取消现有的TimerTask,创建一个新的Timertask,然后再次调度它来提供重新调度功能。

我在RCP应用程序中也做了同样的操作。在Application.java类中添加以下行。

Display display = PlatformUI.createDisplay();
display.addFilter(SWT.MouseDown, new TimerListener());
display.addFilter(SWT.MouseMove, new TimerListener());
display.addFilter(SWT.KeyDown, new TimerListener());
class TimerListener implements Listener 
{
public void handleEvent(Event e) 
  {      
    if (Resources.timer != null ) 
    {
     // Restart the timer on any UI interactions
        Resources.timer.restart();
    }
  }   
} 

这是定时器的实现。我用的是Swing定时器,但你可以使用SWT定时器。

Resources.timer = new javax.swing.Timer(1000, new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e) {
        Display.getDefault().asyncExec(new Runnable() {
            @Override
            public void run() {                 
                // Log off you application here
            }
        });
    }
});

相关内容

  • 没有找到相关文章