Uses of Class
io.qt.core.QFuture
Packages that use QFuture
-
Uses of QFuture in io.qt.concurrent
Methods in io.qt.concurrent that return QFutureModifier and TypeMethodDescriptionQtConcurrent.filter
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor) Calls filterFunctor's filter() method once for each item in sequence and returns a new Sequence of kept items.QtConcurrent.filter
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor) Calls filterFunctor's filter() method once for each item in sequence and returns a new Sequence of kept items.static <T> QFuture<T>
QtConcurrent.filtered
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor) Calls filterFunctor's filter() method once for each item in sequence and returns a new Sequence of kept items.static <T> QFuture<T>
QtConcurrent.filtered
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor) Calls filterFunctor's filter() method once for each item in sequence and returns a new Sequence of kept items.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor) This is an overloaded method provided for convenience.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor, QtConcurrent.ReduceOption... options) Calls filterFunction once for each item in sequence.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor, QtConcurrent.ReduceOptions options) Calls filterFunction once for each item in sequence.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor) This is an overloaded method provided for convenience.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor, QtConcurrent.ReduceOption... options) Calls filterFunction once for each item in sequence.static <U,
T> QFuture<U> QtConcurrent.filteredReduced
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor, QtConcurrent.ReduceOptions options) Calls filterFunction once for each item in sequence.QtConcurrent.map
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MapFunctor<T> functor) Calls function once for each item in sequence.QtConcurrent.map
(Collection<T> sequence, QtConcurrent.MapFunctor<T> functor) Calls function once for each item in sequence.static <U,
T> QFuture<U> QtConcurrent.mapped
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MappedFunctor<U, T> functor) Calls function once for each item in sequence and returns a future with each mapped item as a result.static <U,
T> QFuture<U> QtConcurrent.mapped
(Collection<T> sequence, QtConcurrent.MappedFunctor<U, T> functor) Calls function once for each item in sequence and returns a future with each mapped item as a result.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor) This is an overloaded method provided for convenience.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOption... options) This is an overloaded method provided for convenience.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOptions options) Calls mapFunction once for each item in sequence.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor) This is an overloaded method provided for convenience.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOption... options) This is an overloaded method provided for convenience.static <U,
V, T> QFuture<U> QtConcurrent.mappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOptions options) Calls mapFunction once for each item in sequence.static <T,
A> QFuture<T> QtConcurrent.run
(QtConcurrent.Callable1<T, A> runnable, A a) Executes the Callable using the QtConcurrent framework.static <T,
A, B> QFuture<T> QtConcurrent.run
(QtConcurrent.Callable2<T, A, B> runnable, A a, B b) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C> QFuture<T> QtConcurrent.run
(QtConcurrent.Callable3<T, A, B, C> runnable, A a, B b, C c) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable4<T, A, B, C, D> runnable, A a, B b, C c, D d) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable5<T, A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable6<T, A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable7<T, A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable8<T, A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H, I>
QFuture<T>QtConcurrent.run
(QtConcurrent.Callable9<T, A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Callable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable1<A> runnable, A a) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable2<A, B> runnable, A a, B b) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable3<A, B, C> runnable, A a, B b, C c) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable4<A, B, C, D> runnable, A a, B b, C c, D d) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable5<A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable6<A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable7<A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable8<A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.Runnable9<A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Runnable using the QtConcurrent framework.static <T> QFuture<T>
QtConcurrent.run
(QtConcurrent.RunnableWithPromise<T> runnable) Executes the Callable using the QtConcurrent framework.static <T,
A> QFuture<T> QtConcurrent.run
(QtConcurrent.RunnableWithPromise1<T, A> runnable, A a) Executes the Callable using the QtConcurrent framework.static <T,
A, B> QFuture<T> QtConcurrent.run
(QtConcurrent.RunnableWithPromise2<T, A, B> runnable, A a, B b) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C> QFuture<T> QtConcurrent.run
(QtConcurrent.RunnableWithPromise3<T, A, B, C> runnable, A a, B b, C c) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise4<T, A, B, C, D> runnable, A a, B b, C c, D d) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise5<T, A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise6<T, A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise7<T, A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the RunnableWithPromise using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise8<T, A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H, I>
QFuture<T>QtConcurrent.run
(QtConcurrent.RunnableWithPromise9<T, A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Callable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise runnable) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise1<A> runnable, A a) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise2<A, B> runnable, A a, B b) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise3<A, B, C> runnable, A a, B b, C c) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise4<A, B, C, D> runnable, A a, B b, C c, D d) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise5<A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise6<A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise7<A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise8<A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QtConcurrent.RunnableWithVoidPromise9<A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Runnable using the QtConcurrent framework.static <T,
A> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable1<T, A> runnable, A a) Executes the Callable using the QtConcurrent framework.static <T,
A, B> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable2<T, A, B> runnable, A a, B b) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable3<T, A, B, C> runnable, A a, B b, C c) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable4<T, A, B, C, D> runnable, A a, B b, C c, D d) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable5<T, A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable6<T, A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable7<T, A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable8<T, A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H, I>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Callable9<T, A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Callable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable1<A> runnable, A a) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable2<A, B> runnable, A a, B b) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable3<A, B, C> runnable, A a, B b, C c) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable4<A, B, C, D> runnable, A a, B b, C c, D d) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable5<A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable6<A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable7<A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable8<A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.Runnable9<A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Runnable using the QtConcurrent framework.static <T> QFuture<T>
QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise<T> runnable) Executes the Callable using the QtConcurrent framework.static <T,
A> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise1<T, A> runnable, A a) Executes the Callable using the QtConcurrent framework.static <T,
A, B> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise2<T, A, B> runnable, A a, B b) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C> QFuture<T> QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise3<T, A, B, C> runnable, A a, B b, C c) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise4<T, A, B, C, D> runnable, A a, B b, C c, D d) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise5<T, A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise6<T, A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise7<T, A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise8<T, A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Callable using the QtConcurrent framework.static <T,
A, B, C, D, E, F, G, H, I>
QFuture<T>QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithPromise9<T, A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Callable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise runnable) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise1<A> runnable, A a) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise2<A, B> runnable, A a, B b) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise3<A, B, C> runnable, A a, B b, C c) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise4<A, B, C, D> runnable, A a, B b, C c, D d) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise5<A, B, C, D, E> runnable, A a, B b, C c, D d, E e) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise6<A, B, C, D, E, F> runnable, A a, B b, C c, D d, E e, F f) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise7<A, B, C, D, E, F, G> runnable, A a, B b, C c, D d, E e, F f, G g) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise8<A, B, C, D, E, F, G, H> runnable, A a, B b, C c, D d, E e, F f, G g, H h) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, QtConcurrent.RunnableWithVoidPromise9<A, B, C, D, E, F, G, H, I> runnable, A a, B b, C c, D d, E e, F f, G g, H h, I i) Executes the Runnable using the QtConcurrent framework.QtConcurrent.run
(QThreadPool threadPool, Runnable runnable) Executes the RunnableVoid
using the QtConcurrent framework.static <T> QFuture<T>
QtConcurrent.run
(QThreadPool threadPool, Callable<T> callable) Executes the Callablecallable
through the QtConcurrent framework.Executes the RunnableVoid
using the QtConcurrent framework.static <T> QFuture<T>
Executes the Callablecallable
through the QtConcurrent framework.QtConcurrent.QPromiseTaskBuilderVoid0Arg0.spawn()
QtConcurrent.QPromiseTaskBuilderVoid1Arg1.spawn()
QtConcurrent.QPromiseTaskBuilderVoid2Arg2.spawn()
QtConcurrent.QPromiseTaskBuilderVoid3Arg3.spawn()
QtConcurrent.QPromiseTaskBuilderVoid4Arg4.spawn()
QtConcurrent.QPromiseTaskBuilderVoid5Arg5.spawn()
QtConcurrent.QPromiseTaskBuilderVoid6Arg6.spawn()
QtConcurrent.QPromiseTaskBuilderVoid7Arg7.spawn()
QtConcurrent.QPromiseTaskBuilderVoid8Arg8.spawn()
QtConcurrent.QPromiseTaskBuilderVoid9Arg9.spawn()
QtConcurrent.QTaskBuilderVoid.spawn()
QtConcurrent.QTaskBuilderVoid0Arg0.spawn()
QtConcurrent.QTaskBuilderVoid1Arg1.spawn()
QtConcurrent.QTaskBuilderVoid2Arg2.spawn()
QtConcurrent.QTaskBuilderVoid3Arg3.spawn()
QtConcurrent.QTaskBuilderVoid4Arg4.spawn()
QtConcurrent.QTaskBuilderVoid5Arg5.spawn()
QtConcurrent.QTaskBuilderVoid6Arg6.spawn()
QtConcurrent.QTaskBuilderVoid7Arg7.spawn()
QtConcurrent.QTaskBuilderVoid8Arg8.spawn()
QtConcurrent.QTaskBuilderVoid9Arg9.spawn()
QtConcurrent.QTypedPromiseTaskBuilder0Arg0.spawn()
QtConcurrent.QTypedPromiseTaskBuilder1Arg1.spawn()
QtConcurrent.QTypedPromiseTaskBuilder2Arg2.spawn()
QtConcurrent.QTypedPromiseTaskBuilder3Arg3.spawn()
QtConcurrent.QTypedPromiseTaskBuilder4Arg4.spawn()
QtConcurrent.QTypedPromiseTaskBuilder5Arg5.spawn()
QtConcurrent.QTypedPromiseTaskBuilder6Arg6.spawn()
QtConcurrent.QTypedPromiseTaskBuilder7Arg7.spawn()
QtConcurrent.QTypedPromiseTaskBuilder8Arg8.spawn()
QtConcurrent.QTypedPromiseTaskBuilder9Arg9.spawn()
QtConcurrent.QTypedTaskBuilder.spawn()
QtConcurrent.QTypedTaskBuilder0Arg0.spawn()
QtConcurrent.QTypedTaskBuilder1Arg1.spawn()
QtConcurrent.QTypedTaskBuilder2Arg2.spawn()
QtConcurrent.QTypedTaskBuilder3Arg3.spawn()
QtConcurrent.QTypedTaskBuilder4Arg4.spawn()
QtConcurrent.QTypedTaskBuilder5Arg5.spawn()
QtConcurrent.QTypedTaskBuilder6Arg6.spawn()
QtConcurrent.QTypedTaskBuilder7Arg7.spawn()
QtConcurrent.QTypedTaskBuilder8Arg8.spawn()
QtConcurrent.QTypedTaskBuilder9Arg9.spawn()
-
Uses of QFuture in io.qt.core
Methods in io.qt.core that return QFutureModifier and TypeMethodDescriptionQFuture.clone()
QtFuture.connect
(QMetaObject.AbstractPrivateSignal0 signal) static <A> QFuture<A>
QtFuture.connect
(QMetaObject.AbstractPrivateSignal1<A> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal2<A, B> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal3<A, B, C> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal4<A, B, C, D> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal5<A, B, C, D, E> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal6<A, B, C, D, E, F> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal7<A, B, C, D, E, F, G> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal8<A, B, C, D, E, F, G, H> signal) QtFuture.connect
(QMetaObject.AbstractPrivateSignal9<A, B, C, D, E, F, G, H, I> signal) QFutureInterface.future()
QFutureWatcher.future()
QPromise.future()
QtFuture.makeExceptionalFuture
(Throwable exception) QtFuture.makeReadyFuture()
static <T> QFuture<T>
QtFuture.makeReadyFuture
(Collection<T> values) QFuture.onCanceled
(QObject context, Runnable function) QFuture.onCanceled
(QObject context, Supplier<T> function) QFuture.onCanceled
(Runnable function) QFuture.onCanceled
(Supplier<T> function) <R> QFuture<R>
QFuture.then
(QtFuture.Launch policy, Consumer<QFuture<T>> function) <R> QFuture<R>
QFuture.then
(QtFuture.Launch policy, Function<QFuture<T>, R> function) QFuture.then
(QThreadPool pool, Consumer<QFuture<T>> function) <R> QFuture<R>
QFuture.then
(QThreadPool pool, Function<QFuture<T>, R> function) <R> QFuture<R>
QtFuture.whenAll
(Collection<QFuture<?>> futures) QtFuture.whenAny
(Collection<QFuture<?>> futures) Methods in io.qt.core that return types with arguments of type QFutureModifier and TypeMethodDescriptionQFutureSynchronizer.futures()
QtFuture.whenAll
(Collection<QFuture<?>> futures) QtFuture.whenAny
(Collection<QFuture<?>> futures) Methods in io.qt.core with parameters of type QFutureModifier and TypeMethodDescriptionfinal void
final void
final void
Method parameters in io.qt.core with type arguments of type QFutureModifier and TypeMethodDescription<R> QFuture<R>
QFuture.then
(QtFuture.Launch policy, Consumer<QFuture<T>> function) <R> QFuture<R>
QFuture.then
(QtFuture.Launch policy, Function<QFuture<T>, R> function) QFuture.then
(QThreadPool pool, Consumer<QFuture<T>> function) <R> QFuture<R>
QFuture.then
(QThreadPool pool, Function<QFuture<T>, R> function) <R> QFuture<R>
QtFuture.whenAll
(Collection<QFuture<?>> futures) QtFuture.whenAny
(Collection<QFuture<?>> futures) Constructors in io.qt.core with parameters of type QFuture