Uses of Enum
io.qt.concurrent.QtConcurrent.ReduceOption
-
Uses of QtConcurrent.ReduceOption in io.qt.concurrent
Modifier and TypeMethodDescriptionfinal QtConcurrent.ReduceOption[]
QtConcurrent.ReduceOptions.flags()
Returns an array of flag objects represented by this ReduceOptions.static QtConcurrent.ReduceOption
QtConcurrent.ReduceOption.resolve
(int value) Returns the corresponding enum entry for the given value.static QtConcurrent.ReduceOption
Returns the enum constant of this type with the specified name.static QtConcurrent.ReduceOption[]
QtConcurrent.ReduceOption.values()
Returns an array containing the constants of this enum type, in the order they are declared.Modifier and TypeMethodDescriptionstatic <U,
T> U QtConcurrent.blockingFilteredReduced
(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> 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,
V, T> U QtConcurrent.blockingMappedReduced
(QThreadPool threadPool, Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOption... options) Calls mapFunction once for each item in sequence.static <U,
V, T> U QtConcurrent.blockingMappedReduced
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOption... options) Calls mapFunction once for each item in sequence.QtConcurrent.ReduceOption.combined
(QtConcurrent.ReduceOption e) Combines this entry with other enum entry.QtConcurrent.ReduceOptions.combined
(QtConcurrent.ReduceOption e) Combines this flags with enum entry.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
(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U, T> reducedFunctor, QtConcurrent.ReduceOption... options) Calls filterFunction once for each item in sequence.static QtConcurrent.ReduceOptions
QtConcurrent.ReduceOption.flags
(QtConcurrent.ReduceOption... values) Creates a newQtConcurrent.ReduceOptions
from the entries.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
(Collection<T> sequence, QtConcurrent.MappedFunctor<V, T> functor, QtConcurrent.ReducedFunctor<U, V> reducedFunctor, QtConcurrent.ReduceOption... options) This is an overloaded method provided for convenience.QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e) Sets the flage
QtConcurrent.ReduceOptions.setFlag
(QtConcurrent.ReduceOption e, boolean on) Sets or clears the flagflag
ModifierConstructorDescriptionReduceOptions
(QtConcurrent.ReduceOption... args) Creates a new ReduceOptions where the flags inargs
are set.