Interface QtConcurrent.MapFunctor<T>

Enclosing class:
QtConcurrent
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface QtConcurrent.MapFunctor<T>
An implemetation of this interface is given one to QtConcurrent's map() methods. The map() method of this interface is called for each object in a java.util.Collection.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    map(T object)
    This function is called for each item in the Collection.
  • Method Details

    • map

      void map(T object)
      This function is called for each item in the Collection. The function is then free to alter object as it see fit.