
com.readytalk.swt.util.Executor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swt-bling Show documentation
Show all versions of swt-bling Show documentation
Blinged-out, modern widgets for SWT
package com.readytalk.swt.util;
/**
* An interface to support custom execution for scheduled Events.
*
* Default behavior in swt-bling is to schedule Runnables on Display.getCurrentDisplay().
* Utilize this interface if you want to override this behavior based on your system threading model.
*/
public interface Executor {
public void timerExec(final int time, final Runnable runnable);
public void asyncExec(Runnable runnable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy