-
Methods in io.qt.concurrent with parameters of type QtConcurrent.FilteredFunctor
Modifier and Type |
Method |
Description |
static <T> void |
QtConcurrent.blockingFilter(Collection<T> sequence,
QtConcurrent.FilteredFunctor<T> filteredFunctor) |
Calls filterFunction once for each item in sequence.
|
static <T> List<T> |
QtConcurrent.blockingFiltered(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> U |
QtConcurrent.blockingFilteredReduced(Collection<T> sequence,
QtConcurrent.FilteredFunctor<T> filteredFunctor,
QtConcurrent.ReducedFunctor<U,T> reducedFunctor) |
This is an overloaded method provided for convenience.
|
static <U,
T> U |
QtConcurrent.blockingFilteredReduced(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> U |
QtConcurrent.blockingFilteredReduced(Collection<T> sequence,
QtConcurrent.FilteredFunctor<T> filteredFunctor,
QtConcurrent.ReducedFunctor<U,T> reducedFunctor,
QtConcurrent.ReduceOptions options) |
Calls filterFunction once for each item in sequence.
|
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> 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(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.
|