Interface DeserializationDelegate<T>
-
- Type Parameters:
T
- The type to be represented as an IOReadableWritable.
- All Superinterfaces:
org.apache.flink.core.io.IOReadableWritable
- All Known Implementing Classes:
NonReusingDeserializationDelegate
,ReusingDeserializationDelegate
public interface DeserializationDelegate<T> extends org.apache.flink.core.io.IOReadableWritable
The deserialization delegate is used during deserialization to read an arbitrary element as if it implementsIOReadableWritable
, with the help of a type serializer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getInstance()
void
setInstance(T instance)
-