Interface IAsyncDeserializer<T>
A deserializer for use with Confluent.
Namespace: Confluent.Kafka
Assembly: Confluent.Kafka.dll
Syntax
public interface IAsyncDeserializer<T>
Type Parameters
Name | Description |
---|---|
T |
Methods
DeserializeAsync(ReadOnlyMemory<byte>, bool, SerializationContext)
Deserialize a message key or value.
Declaration
Task<T> DeserializeAsync(ReadOnlyMemory<byte> data, bool isNull, SerializationContext context)
Parameters
Type | Name | Description |
---|---|---|
Read |
data | The raw byte data to deserialize. |
bool | isNull | True if this is a null value. |
Serialization |
context | Context relevant to the deserialize operation. |