All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.readytalk.swt.util.Executor Maven / Gradle / Ivy

There is a newer version: 3.0.17
Show newest version
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