Interface DeserializationDelegate<T>
-
- Type Parameters:
T
- The type to be represented as an IOReadableWritable.
- All Superinterfaces:
IOReadableWritable
- All Known Implementing Classes:
NonReusingDeserializationDelegate
,ReusingDeserializationDelegate
public interface DeserializationDelegate<T> extends 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)
-
Methods inherited from interface org.apache.flink.core.io.IOReadableWritable
read, write
-
-