com.trolltech.qt.core
Interface QtConcurrent.MappedFunctor
- Enclosing class:
- QtConcurrent
public static interface QtConcurrent.MappedFunctor
Implement this interface to perform a mapped operation. An implementation of the interface is sendt
to ome of the mapped methods of QtConcurrent, which applies the MappedFunctor.map() method to all elements in a collection,
and returns the result.
Method Summary |
java.lang.Object |
map(java.lang.Object object)
This method is called for each object in a collection. |
map
java.lang.Object map(java.lang.Object object)
- This method is called for each object in a collection. It should returned a new object.