Class QtConcurrent

java.lang.Object
io.qt.concurrent.QtConcurrent

public final class QtConcurrent extends Object

High-level APIs that make it possible to write multi-threaded programs without using low-level threading primitives

Java wrapper for Qt class QtConcurrent

  • Method Details

    • map

      @QtUninvokable public static <T> QFuture<Void> map(Collection<T> sequence, QtConcurrent.MapFunctor<T> functor)
      Calls function once for each item in sequence. The function is passed a reference to the item, so that any modifications done to the item will appear in sequence.
    • blockingMap

      @QtUninvokable public static <T> void blockingMap(Collection<T> sequence, QtConcurrent.MapFunctor<T> functor)
      Calls function once for each item in sequence. The function is passed a reference to the item, so that any modifications done to the item will appear in sequence.
    • mapped

      @QtUninvokable public static <U, T> QFuture<U> 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. You can QFutureIterator to iterate through the results.
    • blockingMapped

      @QtUninvokable public static <U, T> List<U> blockingMapped(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. You can QFutureIterator to iterate through the results.
    • mappedReduced

      @QtUninvokable public static <U, V, T> QFuture<U> mappedReduced(Collection<T> sequence, QtConcurrent.MappedFunctor<V,T> functor, QtConcurrent.ReducedFunctor<U,V> reducedFunctor)
      This is an overloaded method provided for convenience.

      It is equivalent of mappedReduced(sequence, functor, reducedFunctor, ReduceOption.UnorderedReduce, ReduceOption.SequentialReduce)

    • mappedReduced

      @QtUninvokable public static <U, V, T> QFuture<U> 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.

      Note that while mapFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is determined by reduceOptions.

    • mappedReduced

      @QtUninvokable public static <U, V, T> QFuture<U> 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. The return value of each mapFunction is passed to reduceFunction.

      Note that while mapFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is determined by reduceOptions.

    • blockingMappedReduced

      @QtUninvokable public static <U, V, T> U blockingMappedReduced(Collection<T> sequence, QtConcurrent.MappedFunctor<V,T> functor, QtConcurrent.ReducedFunctor<U,V> reducedFunctor)
      This is an overloaded method provided for convenience.

      It is equivalent of calling blockingMappedReduced(sequence, functor, reducedFunctor, ReduceOption.UnorderedReduce, ReduceOption.SequentialReduce)

    • blockingMappedReduced

      @QtUninvokable public static <U, V, T> U 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. The return value of each mapFunction is passed to reduceFunction.

      Note that while mapFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is determined by reduceOptions.

      Note: This function will block until all items in the sequence have been processed.

    • blockingMappedReduced

      @QtUninvokable public static <U, V, T> U blockingMappedReduced(Collection<T> sequence, QtConcurrent.MappedFunctor<V,T> functor, QtConcurrent.ReducedFunctor<U,V> reducedFunctor, QtConcurrent.ReduceOptions options)
      Calls mapFunction once for each item in sequence. The return value of each mapFunction is passed to reduceFunction.

      Note that while mapFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is determined by reduceOptions.

      Note: This function will block until all items in the sequence have been processed.

    • filter

      @QtUninvokable public static <T> QFuture<Void> 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. If filterFunction returns true, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
    • filtered

      @QtUninvokable public static <T> QFuture<T> 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. If filterFunction returns true, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
    • blockingFiltered

      @QtUninvokable public static <T> List<T> 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. If filterFunction returns true, a copy of the item is put in the new Sequence. Otherwise, the item will not appear in the new Sequence.
    • blockingFilter

      @QtUninvokable public static <T> void blockingFilter(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor)
      Calls filterFunction once for each item in sequence. If filterFunction returns true, the item is kept in sequence; otherwise, the item is removed from sequence. Note: This function will block until all items in the sequence have been processed.
    • filteredReduced

      @QtUninvokable public static <U, T> QFuture<U> filteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor)
      This is an overloaded method provided for convenience. It is equivalent of calling filteredReduced(sequence, filteredFunctor, ReduceOption.UnorderedReduce, ReduceOption.Seq This is an overloaded method provided for convenience. It is equivalent of calling filteredReduced)
    • filteredReduced

      @QtUninvokable public static <U, T> QFuture<U> filteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor, QtConcurrent.ReduceOption... options)
      Calls filterFunction once for each item in sequence. If filterFunction returns true for an item, that item is then passed to reduceFunction. In other words, the return value is the result of reduceFunction for each item where filterFunction returns true.

      Note that while filterFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is undefined if reduceOptions is QtConcurrent::UnorderedReduce. If reduceOptions is QtConcurrent::OrderedReduce, reduceFunction is called in the order of the original sequence.

    • filteredReduced

      @QtUninvokable public static <U, T> QFuture<U> filteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor, QtConcurrent.ReduceOptions options)
      Calls filterFunction once for each item in sequence. If filterFunction returns true for an item, that item is then passed to reduceFunction. In other words, the return value is the result of reduceFunction for each item where filterFunction returns true.

      Note that while filterFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is undefined if reduceOptions is QtConcurrent::UnorderedReduce. If reduceOptions is QtConcurrent::OrderedReduce, reduceFunction is called in the order of the original sequence.

    • blockingFilteredReduced

      @QtUninvokable public static <U, T> U blockingFilteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor)
      This is an overloaded method provided for convenience. It is the equivalent of calling blockingFilteredReduced(sequence, filteredFunctor, reducedFunctor, ReduceOption.UnorderedReduce, ReduceOption.SequentialReduce)
    • blockingFilteredReduced

      @QtUninvokable public static <U, T> U blockingFilteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor, QtConcurrent.ReduceOption... options)
      Calls filterFunction once for each item in sequence. If filterFunction returns true for an item, that item is then passed to reduceFunction. In other words, the return value is the result of reduceFunction for each item where filterFunction returns true.

      Note that while filterFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is undefined if reduceOptions is QtConcurrent::UnorderedReduce. If reduceOptions is QtConcurrent::OrderedReduce, reduceFunction is called in the order of the original sequence.

    • blockingFilteredReduced

      @QtUninvokable public static <U, T> U blockingFilteredReduced(Collection<T> sequence, QtConcurrent.FilteredFunctor<T> filteredFunctor, QtConcurrent.ReducedFunctor<U,T> reducedFunctor, QtConcurrent.ReduceOptions options)
      Calls filterFunction once for each item in sequence. If filterFunction returns true for an item, that item is then passed to reduceFunction. In other words, the return value is the result of reduceFunction for each item where filterFunction returns true.

      Note that while filterFunction is called concurrently, only one thread at a time will call reduceFunction. The order in which reduceFunction is called is undefined if reduceOptions is QtConcurrent::UnorderedReduce. If reduceOptions is QtConcurrent::OrderedReduce, reduceFunction is called in the order of the original sequence.

    • run

      @QtUninvokable public static <T> QFuture<T> run(Callable<T> callable)
      Executes the Callable callable through the QtConcurrent framework. The returned QFuture object's result will be the return value of callable.
    • run

      @QtUninvokable public static <T> QFuture<T> run(QThreadPool threadPool, Callable<T> callable)
      Executes the Callable callable through the QtConcurrent framework. The thread is taken from the QThreadPool pool. The returned QFuture object's result will be the return value of callable.
    • run

      @QtUninvokable public static QFuture<Void> run(Runnable runnable)
      Executes the Runnable Void using the QtConcurrent framework.
    • run

      @QtUninvokable public static QFuture<Void> run(QThreadPool threadPool, Runnable runnable)
      Executes the Runnable Void using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <A> QFuture<Void> run(QtConcurrent.Runnable1<A> runnable, A a)
      Executes the Runnable using the QtConcurrent framework.
    • run

      public static <A> QFuture<Void> run(QThreadPool threadPool, QtConcurrent.Runnable1<A> runnable, A a)
      Executes the Runnable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <A, B> QFuture<Void> run(QtConcurrent.Runnable2<A,B> runnable, A a, B b)
      Executes the Runnable using the QtConcurrent framework.
    • run

      public static <A, B> QFuture<Void> run(QThreadPool threadPool, QtConcurrent.Runnable2<A,B> runnable, A a, B b)
      Executes the Runnable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <A, B, C> QFuture<Void> run(QtConcurrent.Runnable3<A,B,C> runnable, A a, B b, C c)
      Executes the Runnable using the QtConcurrent framework.
    • run

      public static <A, B, C> QFuture<Void> run(QThreadPool threadPool, QtConcurrent.Runnable3<A,B,C> runnable, A a, B b, C c)
      Executes the Runnable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <A, B, C, D> QFuture<Void> run(QtConcurrent.Runnable4<A,B,C,D> runnable, A a, B b, C c, D d)
      Executes the Runnable using the QtConcurrent framework.
    • run

      public static <A, B, C, D> QFuture<Void> 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. The thread is taken from the QThreadPool pool.
    • run

      public static <A, B, C, D, E> QFuture<Void> 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.
    • run

      public static <A, B, C, D, E> QFuture<Void> 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. The thread is taken from the QThreadPool pool.
    • run

      public static <T, A> QFuture<T> run(QtConcurrent.Callable1<T,A> runnable, A a)
      Executes the Callable using the QtConcurrent framework.
    • run

      public static <T, A> QFuture<T> run(QThreadPool threadPool, QtConcurrent.Callable1<T,A> runnable, A a)
      Executes the Callable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <T, A, B> QFuture<T> run(QtConcurrent.Callable2<T,A,B> runnable, A a, B b)
      Executes the Callable using the QtConcurrent framework.
    • run

      public static <T, A, B> QFuture<T> run(QThreadPool threadPool, QtConcurrent.Callable2<T,A,B> runnable, A a, B b)
      Executes the Callable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <T, A, B, C> QFuture<T> run(QtConcurrent.Callable3<T,A,B,C> runnable, A a, B b, C c)
      Executes the Callable using the QtConcurrent framework.
    • run

      public static <T, A, B, C> QFuture<T> run(QThreadPool threadPool, QtConcurrent.Callable3<T,A,B,C> runnable, A a, B b, C c)
      Executes the Callable using the QtConcurrent framework. The thread is taken from the QThreadPool pool.
    • run

      public static <T, A, B, C, D> QFuture<T> run(QtConcurrent.Callable4<T,A,B,C,D> runnable, A a, B b, C c, D d)
      Executes the Callable using the QtConcurrent framework.
    • run

      public static <T, A, B, C, D> QFuture<T> 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. The thread is taken from the QThreadPool pool.
    • run

      public static <T, A, B, C, D, E> QFuture<T> 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.
    • run

      public static <T, A, B, C, D, E> QFuture<T> 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. The thread is taken from the QThreadPool pool.