T - the type of the input variableV - the type of the outputpublic interface Function<T,V> extends PartialFunction<T,V>
Future handle. If the code implementing apply throws
a checked exception use PartialFunction instead.PartialFunction,
FutureV apply(T o)
o to obtain a result or type V. A
special case of PartialFunction.apply(Object) that does not throw
checked exceptions.apply in interface PartialFunction<T,V>o - the input to processV