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.
|
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.
|
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.
|
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.
|
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.
|
static <T> QFuture<T> |
QtConcurrent.run(QThreadPool threadPool,
Callable<T> callable) |
Executes the Callable callable through the QtConcurrent framework.
|
static <T> QFuture<T> |
QtConcurrent.run(Callable<T> callable) |
Executes the Callable callable through the QtConcurrent framework.
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder0Arg0.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder1Arg1.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder2Arg2.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder3Arg3.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder4Arg4.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder5Arg5.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder6Arg6.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder7Arg7.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder8Arg8.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedPromiseTaskBuilder9Arg9.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder0Arg0.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder1Arg1.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder2Arg2.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder3Arg3.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder4Arg4.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder5Arg5.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder6Arg6.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder7Arg7.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder8Arg8.spawn() |
|
QFuture<T> |
QtConcurrent.QTypedTaskBuilder9Arg9.spawn() |
|