org.apache.spark.api.java.function
Interface FlatMapFunction2<T1,T2,R>

All Superinterfaces:
java.io.Serializable

public interface FlatMapFunction2<T1,T2,R>
extends java.io.Serializable

A function that takes two inputs and returns zero or more output records.


Method Summary
 Iterable<R> call(T1 t1, T2 t2)
           
 

Method Detail

call

Iterable<R> call(T1 t1,
                 T2 t2)
                 throws Exception
Throws:
Exception