Package io.atleon.rabbitmq
Interface BodyDeserializer<T>
-
- Type Parameters:
T- Type to be deserialized into
- All Superinterfaces:
Configurable
- All Known Implementing Classes:
ByteArrayBodyDeserializer,LongBodyDeserializer,StringBodyDeserializer
public interface BodyDeserializer<T> extends Configurable
An interface for converting RabbitMQ Message bodies to objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidconfigure(Map<String,?> properties)Tdeserialize(SerializedBody data)
-
-
-
Method Detail
-
configure
default void configure(Map<String,?> properties)
- Specified by:
configurein interfaceConfigurable
-
deserialize
T deserialize(SerializedBody data)
-
-