static <T> QVoidFuture |
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> QVoidFuture |
QtConcurrent.map(Collection<T> sequence,
QtConcurrent.MapFunctor<T> functor) |
Calls function once for each item in sequence.
|
static <A> QVoidFuture |
QtConcurrent.run(QtConcurrent.Runnable1<A> runnable,
A a) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B> QVoidFuture |
QtConcurrent.run(QtConcurrent.Runnable2<A,B> runnable,
A a,
B b) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B,
C> QVoidFuture |
QtConcurrent.run(QtConcurrent.Runnable3<A,B,C> runnable,
A a,
B b,
C c) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B,
C,
D> QVoidFuture |
QtConcurrent.run(QtConcurrent.Runnable4<A,B,C,D> runnable,
A a,
B b,
C c,
D d) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B,
C,
D,
E> QVoidFuture |
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.
|
static <A> QVoidFuture |
QtConcurrent.run(QThreadPool threadPool,
QtConcurrent.Runnable1<A> runnable,
A a) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B> QVoidFuture |
QtConcurrent.run(QThreadPool threadPool,
QtConcurrent.Runnable2<A,B> runnable,
A a,
B b) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B,
C> QVoidFuture |
QtConcurrent.run(QThreadPool threadPool,
QtConcurrent.Runnable3<A,B,C> runnable,
A a,
B b,
C c) |
Executes the Runnable using the QtConcurrent framework.
|
static <A,
B,
C,
D> QVoidFuture |
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.
|
static <A,
B,
C,
D,
E> QVoidFuture |
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.
|
static QVoidFuture |
QtConcurrent.run(QThreadPool threadPool,
Runnable runnable) |
Executes the Runnable Void using the QtConcurrent framework.
|
static QVoidFuture |
QtConcurrent.run(Runnable runnable) |
Executes the Runnable Void using the QtConcurrent framework.
|