Google Cloud Dataflow SDK for Java, version 1.9.1
com.google.cloud.dataflow.sdk.transforms
Interface SerializableFunction<InputT,OutputT>
-
- Type Parameters:
InputT
- input value typeOutputT
- output value type
- All Superinterfaces:
- Serializable
- All Known Implementing Classes:
- SimpleFunction
public interface SerializableFunction<InputT,OutputT> extends Serializable
A function that computes an output value of typeOutputT
from an input value of typeInputT
and isSerializable
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description OutputT
apply(InputT input)
Returns the result of invoking this function on the given input.
-