Interface SerializationSchema<T>
-
- Type Parameters:
T- The type to be serialized.
- All Superinterfaces:
Serializable,org.apache.flink.api.common.serialization.SerializationSchema<T>
- All Known Implementing Classes:
SimpleStringSchema,TypeInformationSerializationSchema
@Public @Deprecated public interface SerializationSchema<T> extends org.apache.flink.api.common.serialization.SerializationSchema<T>, Serializable
Deprecated.UseSerializationSchemainstead.The serialization schema describes how to turn a data object into a different serialized representation. Most data sinks (for example Apache Kafka) require the data to be handed to them in a specific format (for example as byte strings).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description byte[]serialize(T element)Deprecated.Serializes the incoming element to a specified type.
-