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 implements IOReadableWritable, with the help of a type serializer.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    void
    setInstance(T instance)
     

    Methods inherited from interface org.apache.flink.core.io.IOReadableWritable

    read, write
  • Method Details

    • setInstance

      void setInstance(T instance)
    • getInstance

      T getInstance()