Class TypeInformationSerializationSchema<T>
- java.lang.Object
-
- org.apache.flink.api.common.serialization.TypeInformationSerializationSchema<T>
-
- org.apache.flink.streaming.util.serialization.TypeInformationSerializationSchema<T>
-
- Type Parameters:
T- The type to be serialized.
- All Implemented Interfaces:
Serializable,org.apache.flink.api.common.serialization.DeserializationSchema<T>,org.apache.flink.api.common.serialization.SerializationSchema<T>,org.apache.flink.api.java.typeutils.ResultTypeQueryable<T>,DeserializationSchema<T>,SerializationSchema<T>
@Public @Deprecated public class TypeInformationSerializationSchema<T> extends org.apache.flink.api.common.serialization.TypeInformationSerializationSchema<T> implements DeserializationSchema<T>, SerializationSchema<T>
Deprecated.UseTypeInformationSerializationSchemainstead.A serialization and deserialization schema that uses Flink's serialization stack to transform typed from and to byte arrays.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TypeInformationSerializationSchema(org.apache.flink.api.common.typeinfo.TypeInformation<T> typeInfo, org.apache.flink.api.common.ExecutionConfig ec)Deprecated.Creates a new de-/serialization schema for the given type.
-
Method Summary
-
Methods inherited from class org.apache.flink.api.common.serialization.TypeInformationSerializationSchema
deserialize, getProducedType, isEndOfStream, serialize
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.api.common.serialization.DeserializationSchema
deserialize, open
-
Methods inherited from interface org.apache.flink.streaming.util.serialization.DeserializationSchema
deserialize, isEndOfStream
-
Methods inherited from interface org.apache.flink.api.java.typeutils.ResultTypeQueryable
getProducedType
-
Methods inherited from interface org.apache.flink.streaming.util.serialization.SerializationSchema
serialize
-
-
-
-
Constructor Detail
-
TypeInformationSerializationSchema
public TypeInformationSerializationSchema(org.apache.flink.api.common.typeinfo.TypeInformation<T> typeInfo, org.apache.flink.api.common.ExecutionConfig ec)
Deprecated.Creates a new de-/serialization schema for the given type.- Parameters:
typeInfo- The type information for the type de-/serialized by this schema.ec- The execution config, which is used to parametrize the type serializers.
-
-