Title here
Summary here
public class KafkaSource<TOutput>.DefaultRowDeserializer : IDeserializer<TOutput>
Deserialize a message key or value.
public TOutput Deserialize(ReadOnlySpan<byte> data, bool isNull, SerializationContext context)
Type | Name | Description |
---|---|---|
ReadOnlySpan<byte> | data | The data to deserialize. |
bool | isNull | Whether or not the value is null. |
SerializationContext | context | Context relevant to the deserialize operation. |
Type | Description |
---|---|
TOutput | The deserialized value. |