Class FromElementsSplitSerializer
- java.lang.Object
-
- org.apache.flink.connector.testframe.source.split.FromElementsSplitSerializer
-
- All Implemented Interfaces:
SimpleVersionedSerializer<FromElementsSplit>
,Versioned
public class FromElementsSplitSerializer extends Object implements SimpleVersionedSerializer<FromElementsSplit>
The split serializer for theFromElementsSource
.
-
-
Constructor Summary
Constructors Constructor Description FromElementsSplitSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FromElementsSplit
deserialize(int version, byte[] serialized)
De-serializes the given data (bytes) which was serialized with the scheme of the indicated version.int
getVersion()
Gets the version with which this serializer serializes.byte[]
serialize(FromElementsSplit split)
Serializes the given object.
-
-
-
Method Detail
-
getVersion
public int getVersion()
Description copied from interface:SimpleVersionedSerializer
Gets the version with which this serializer serializes.- Specified by:
getVersion
in interfaceSimpleVersionedSerializer<FromElementsSplit>
- Specified by:
getVersion
in interfaceVersioned
- Returns:
- The version of the serialization schema.
-
serialize
public byte[] serialize(FromElementsSplit split) throws IOException
Description copied from interface:SimpleVersionedSerializer
Serializes the given object. The serialization is assumed to correspond to the current serialization version (as returned bySimpleVersionedSerializer.getVersion()
.- Specified by:
serialize
in interfaceSimpleVersionedSerializer<FromElementsSplit>
- Parameters:
split
- The object to serialize.- Returns:
- The serialized data (bytes).
- Throws:
IOException
- Thrown, if the serialization fails.
-
deserialize
public FromElementsSplit deserialize(int version, byte[] serialized) throws IOException
Description copied from interface:SimpleVersionedSerializer
De-serializes the given data (bytes) which was serialized with the scheme of the indicated version.- Specified by:
deserialize
in interfaceSimpleVersionedSerializer<FromElementsSplit>
- Parameters:
version
- The version in which the data was serializedserialized
- The serialized data- Returns:
- The deserialized object
- Throws:
IOException
- Thrown, if the deserialization fails.
-
-