Package io.atleon.rabbitmq
Interface BodyDeserializer<T>
-
- Type Parameters:
T- Type to be deserialized into
- All Superinterfaces:
io.atleon.util.Configurable
- All Known Implementing Classes:
ByteArrayBodyDeserializer,LongBodyDeserializer,StringBodyDeserializer
public interface BodyDeserializer<T> extends io.atleon.util.ConfigurableAn 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 interfaceio.atleon.util.Configurable
-
deserialize
T deserialize(SerializedBody data)
-
-