T - The type created by the keyed deserialization schema.@PublicEvolving public interface KafkaDeserializationSchema<T> extends Serializable, org.apache.flink.api.java.typeutils.ResultTypeQueryable<T>
| 限定符和类型 | 方法和说明 |
|---|---|
T |
deserialize(org.apache.kafka.clients.consumer.ConsumerRecord<byte[],byte[]> record)
Deserializes the Kafka record.
|
default void |
deserialize(org.apache.kafka.clients.consumer.ConsumerRecord<byte[],byte[]> message,
org.apache.flink.util.Collector<T> out)
Deserializes the Kafka record.
|
boolean |
isEndOfStream(T nextElement)
Method to decide whether the element signals the end of the stream.
|
default void |
open(org.apache.flink.api.common.serialization.DeserializationSchema.InitializationContext context)
Initialization method for the schema.
|
default void open(org.apache.flink.api.common.serialization.DeserializationSchema.InitializationContext context)
throws Exception
deserialize(org.apache.kafka.clients.consumer.ConsumerRecord<byte[], byte[]>) and thus suitable for one time setup work.
The provided DeserializationSchema.InitializationContext can be used to access
additional features such as e.g. registering user metrics.
context - Contextual information that can be used during initialization.Exceptionboolean isEndOfStream(T nextElement)
nextElement - The element to test for the end-of-stream signal.T deserialize(org.apache.kafka.clients.consumer.ConsumerRecord<byte[],byte[]> record) throws Exception
record - Kafka record to be deserialized.Exceptiondefault void deserialize(org.apache.kafka.clients.consumer.ConsumerRecord<byte[],byte[]> message,
org.apache.flink.util.Collector<T> out)
throws Exception
Can output multiple records through the Collector. Note that number and size of
the produced records should be relatively small. Depending on the source implementation
records can be buffered in memory or collecting records might delay emitting checkpoint
barrier.
message - The message, as a byte array.out - The collector to put the resulting messages.ExceptionCopyright © 2014–2023 The Apache Software Foundation. All rights reserved.