Uses of Interface
org.eclipse.swt.SwtCallable
Package
Description
SWT Custom widgets.
SWT widget public API classes.
-
Uses of SwtCallable in org.eclipse.swt.custom
Modifier and TypeMethodDescriptionstatic <V,
E extends Exception>
CompletableFuture<V>BusyIndicator.compute
(SwtCallable<V, E> action) If called from aDisplay
thread use the givenSwtCallable
to produces aCompletableFuture
providing busy feedback using the busy indicator while computation is running.static <V,
E extends Exception>
CompletableFuture<V>BusyIndicator.compute
(SwtCallable<V, E> action, Executor executor) If called from aDisplay
thread use the givenSwtCallable
to compute aCompletableFuture
providing busy feedback using the busy indicator while computation is running. -
Uses of SwtCallable in org.eclipse.swt.widgets
Modifier and TypeMethodDescription<T,
E extends Exception>
TDisplay.syncCall
(SwtCallable<T, E> callable) Calls the callable on the user-interface thread at the next reasonable opportunity, and returns the its result from this method.