SwtExec (durian-swt 5.2.0 API)
- All Implemented Interfaces:
RxExecutor.Has,Executor,ExecutorService,ScheduledExecutorService
Executors which execute on the SWT UI thread.
There are two primary kinds of `SwtExec`:
- async() -> performs actions using Display.asyncExec
- immediate() -> performs actions immediately if called from a UI thread, otherwise delegates to `asyncExec`.
In addition to the standard executor methods, each `SwtExec` also has a method guardOn, which
returns a SwtExec.Guarded instance - the cure for "Widget is disposed" errors. `Guarded` is an Executor and RxSubscriber which
stops running tasks and cancels all subscriptions and futures when the guard widget is disposed.
```java
SwtExec.immediate().guardOn(myWidget).subscribe(someFuture, value -> myWidget.setContentsTo(value));
```
In the example above, if the widget is disposed before the future completes, that's fine! No "widget is disposed" errors.
blocking() is similar to `async()` and `immediate()`, but it doesn't support `guard` - it's just a simple `Executor`.
It performs actions immediately if called from a UI thread, else delegates to the blocking Display.syncExec(java.lang.Runnable). It also
has the SwtExec.Blocking.get(Supplier) method, which allows you to easily get a value using a function which must be called
on the SWT thread.
In the rare scenario where you need higher performance, it is possible to get similar behavior as immediate() but with
less overhead (and safety) in swtOnly() and sameThread(). It is very rarely worth this sacrifice.
-
Nested Class Summary
Nested Classes
-
Field Summary
Fields
-
Method Summary
async()Returns an "async" SwtExecutor.
booleanblocking()Returns a "blocking" Executor for the SWT thread.
voidExecutes the given command at some time in the future.
Returns an API for performing actions which are guarded on the given Widget.
guardOn(com.diffplug.common.swt.ControlWrapper wrapper) Returns an API for performing actions which are guarded on the given ControlWrapper.
Returns an API for performing actions which are guarded on the given Widget.
Returns an "immediate" SwtExecutor.
static booleanReturns true iff called from the UI thread.
booleanbooleanUNLESS YOU HAVE PERFORMANCE PROBLEMS, USE
immediate()INSTEAD.Creates and executes a one-shot action that becomes enabled after the given delay.
Creates and executes a ScheduledFuture that becomes enabled after the given delay.
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that is executions will commence after
initialDelaythen
initialDelay+period, then
initialDelay + 2 * period, and so on.
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given delay between the termination of one execution and the commencement of the next.
voidshutdown()swtOnly()UNLESS YOU HAVE PERFORMANCE PROBLEMS, USE
immediate()INSTEAD.static voidExecutes the given runnable in the UI thread after the given delay.
-
Field Details
-
rxExecutor
-
-
Method Details
-
isRunningOnUI
public static boolean isRunningOnUI()
Returns true iff called from the UI thread.
-
async
public static SwtExec async()
Returns an "async" SwtExecutor.
When `execute(Runnable)` is called, the `Runnable` will be passed to
Display.asyncExec. -
immediate
public static SwtExec immediate()
Returns an "immediate" SwtExecutor. - When `execute(Runnable)` is called from the SWT thread, the `Runnable` will be executed immediately. - Else, the `Runnable` will be passed to
Display.asyncExec. In the rare case that `immediate()` only ever receives events on the SWT thread, there are faster options: -swtOnlyis about 3x faster, and will throw an error if you call it from somewhere besides an SWT thread. -sameThreadis about 15x faster, and will not throw an error if you call it from somewhere besides an SWT thread (but your callback probably will). It is very rare that sacrificing the safety of `immediate()` is worth it. Here is the approximate throughput of the three options on a Win 10, i7-2630QM machine. - `immediate()` - 2.9 million events per second - `swtOnly()` - 8.3 million events per second - `sameThread()` - 50 million events per second -
blocking
Returns a "blocking" Executor for the SWT thread.
- When `execute(Runnable)` is called from the SWT thread, the `Runnable` will be executed immediately.
- Else, the `Runnable` will be passed to
Display.syncExec.
This instance also has a blocking
get()method for doing a get in the UI thread. -
timerExec
public static void timerExec
(int ms, Runnable runnable) Executes the given runnable in the UI thread after the given delay.
-
guardOn
Returns an API for performing actions which are guarded on the given Widget.
-
guardOn
Returns an API for performing actions which are guarded on the given Widget.
-
guardOn
public SwtExec.Guarded guardOn
(com.diffplug.common.swt.ControlWrapper wrapper) Returns an API for performing actions which are guarded on the given ControlWrapper.
-
getRxExecutor
- Specified by:
getRxExecutorin interfaceRxExecutor.Has
-
execute
public void execute
(Runnable runnable) Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the
Executorimplementation.
- Specified by:
executein interfaceExecutor- Parameters:
runnable- the runnable task- Throws:
RejectedExecutionException- if this task cannot be accepted for execution.NullPointerException- if command is null
-
shutdown
Deprecated.
Initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted. Invocation has no additional effect if already shut down.
- Specified by:
shutdownin interfaceExecutorService- Throws:
SecurityException- if a security manager exists and shutting down this ExecutorService may manipulate threads that the caller is not permitted to modify because it does not holdRuntimePermission("modifyThread"), or the security manager's checkAccess method denies access.
-
shutdownNow
Deprecated.
Attempts to stop all actively executing tasks, halts the processing of waiting tasks, and returns a list of the tasks that were awaiting execution.
There are no guarantees beyond best-effort attempts to stop processing actively executing tasks. For example, typical implementations will cancel via
Thread.interrupt(), so any task that fails to respond to interrupts may never terminate.- Specified by:
shutdownNowin interfaceExecutorService- Returns:
- list of tasks that never commenced execution
- Throws:
SecurityException- if a security manager exists and shutting down this ExecutorService may manipulate threads that the caller is not permitted to modify because it does not holdRuntimePermission("modifyThread"), or the security manager's checkAccess method denies access.
-
isShutdown
Deprecated.
Returns
trueif this executor has been shut down.
- Specified by:
isShutdownin interfaceExecutorService- Returns:
- true if this executor has been shut down
-
isTerminated
Deprecated.
Returns
trueif all tasks have completed following shut down. Note that
isTerminatedis never
trueunless either
shutdownor
shutdownNowwas called first.
- Specified by:
isTerminatedin interfaceExecutorService- Returns:
- true if all tasks have completed following shut down
-
awaitTermination
Deprecated.
Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first.
- Specified by:
awaitTerminationin interfaceExecutorService- Parameters:
timeout- the maximum time to waitunit- the time unit of the timeout argument- Returns:
- true if this executor terminated and false if the timeout elapsed before termination
- Throws:
InterruptedException- if interrupted while waiting
-
schedule
Creates and executes a one-shot action that becomes enabled after the given delay.
- Specified by:
schedulein interfaceScheduledExecutorService- Parameters:
command- the task to executedelay- the time from now to delay executionunit- the time unit of the delay parameter- Returns:
- a ScheduledFuture representing pending completion of the task and whose get() method will return null upon completion
- Throws:
RejectedExecutionException- if the task cannot be scheduled for executionNullPointerException- if command is null
-
schedule
Creates and executes a ScheduledFuture that becomes enabled after the given delay.
- Specified by:
schedulein interfaceScheduledExecutorService- Parameters:
callable- the function to executedelay- the time from now to delay executionunit- the time unit of the delay parameter- Returns:
- a ScheduledFuture that can be used to extract result or cancel
- Throws:
RejectedExecutionException- if the task cannot be scheduled for executionNullPointerException- if callable is null
-
scheduleAtFixedRate
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; that is executions will commence after
initialDelaythen
initialDelay+period, then
initialDelay + 2 * period, and so on. If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the executor. If any execution of this task takes longer than its period, then subsequent executions may start late, but will not concurrently execute.
- Specified by:
scheduleAtFixedRatein interfaceScheduledExecutorService- Parameters:
command- the task to executeinitialDelay- the time to delay first executionperiod- the period between successive executionsunit- the time unit of the initialDelay and period parameters- Returns:
- a ScheduledFuture representing pending completion of the task, and whose get() method will throw an exception upon cancellation
- Throws:
RejectedExecutionException- if the task cannot be scheduled for executionNullPointerException- if command is nullIllegalArgumentException- if period less than or equal to zero
-
scheduleWithFixedDelay
Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given delay between the termination of one execution and the commencement of the next. If any execution of the task encounters an exception, subsequent executions are suppressed. Otherwise, the task will only terminate via cancellation or termination of the executor.
- Specified by:
scheduleWithFixedDelayin interfaceScheduledExecutorService- Parameters:
command- the task to executeinitialDelay- the time to delay first executiondelay- the delay between the termination of one execution and the commencement of the nextunit- the time unit of the initialDelay and delay parameters- Returns:
- a ScheduledFuture representing pending completion of the task, and whose get() method will throw an exception upon cancellation
- Throws:
RejectedExecutionException- if the task cannot be scheduled for executionNullPointerException- if command is nullIllegalArgumentException- if delay less than or equal to zero
-
swtOnly
public static SwtExec swtOnly()
UNLESS YOU HAVE PERFORMANCE PROBLEMS, USE
immediate()INSTEAD. Returns an SwtExecutor which can only be called from the SWT thread, and runs actions immediately. Has the same behavior asimmediate()for callbacks on the SWT thread. For values not on the SWT thread, `immediate()` behaves likesasync(), while `swtOnly()` throws an exception. -
sameThread
public static SwtExec sameThread()
UNLESS YOU HAVE PERFORMANCE PROBLEMS, USE
immediate()INSTEAD. Returns an SwtExec which runs actions immediately, without checking whether they were called from the SWT thread or not.
-