Interface QtConcurrent.FilteredFunctor<T>

Enclosing class:
QtConcurrent

public static interface QtConcurrent.FilteredFunctor<T>
An implementation of this interface is given to one of QtConcurrent's filtered() methods. The filter method if this interface is called for each item in a java.util.Collection.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    filter(T object)
    This method is called for each item in a java.util.Collection.
  • Method Details

    • filter

      boolean filter(T object)
      This method is called for each item in a java.util.Collection. The items for which this method returns true are removed from the collection.