This project has retired. For details please refer to its Attic page.
Apache REEF: Org.Apache.REEF.IMRU.API.IMapFunction< in in TMapInput, out out TMapOutput > Interface Template Reference
Apache REEF  0.15.0
Retainable Evaluator Execution Framework
Public Member Functions | List of all members
Org.Apache.REEF.IMRU.API.IMapFunction< in in TMapInput, out out TMapOutput > Interface Template Reference

Interface to be implemented by Map functions in IMRU. More...

Public Member Functions

TMapOutput Map (TMapInput mapInput)
 Computes new output based on the given side information and data. More...
 

Detailed Description

Interface to be implemented by Map functions in IMRU.

Objects of this type are stateful in the sense that the Map function will be called many times, and state can be kept in instance variables in between these invocations. The data the map is performed on is assumed to be passed in as a constructor parameter.

Template Parameters
TMapInputThe type of the side information provided to the Map function
TMapOutputThe return type of the Map function

Member Function Documentation

TMapOutput Org.Apache.REEF.IMRU.API.IMapFunction< in in TMapInput, out out TMapOutput >.Map ( TMapInput  mapInput)

Computes new output based on the given side information and data.

Parameters
mapInputCan't be null.
Returns
The output of this map round. Can't be null.

The documentation for this interface was generated from the following file: