Uses of Interface
io.qt.concurrent.QtConcurrent.FilteredFunctor
-
Uses of QtConcurrent.FilteredFunctor in io.qt.concurrent
Methods in io.qt.concurrent with parameters of type QtConcurrent.FilteredFunctorModifier and TypeMethodDescriptionstatic <T> voidQtConcurrent.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.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.