Uses of Interface
org.eclipse.swt.SwtCallable
-
Packages that use SwtCallable Package Description org.eclipse.swt.custom org.eclipse.swt.widgets -
-
Uses of SwtCallable in org.eclipse.swt.custom
Methods in org.eclipse.swt.custom with parameters of type SwtCallable Modifier and Type Method Description static <V,E extends java.lang.Exception>
java.util.concurrent.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 java.lang.Exception>
java.util.concurrent.CompletableFuture<V>BusyIndicator. compute(SwtCallable<V,E> action, java.util.concurrent.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
Methods in org.eclipse.swt.widgets with parameters of type SwtCallable Modifier and Type Method Description <T,E extends java.lang.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.
-