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

All Superinterfaces:
java.io.Serializable

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

A three-argument function that takes arguments of type T1, T2 and T3 and returns an R.


Method Summary
 R call(T1 v1, T2 v2, T3 v3)
           
 

Method Detail

call

R call(T1 v1,
       T2 v2,
       T3 v3)
       throws Exception
Throws:
Exception