net.leanix.dropkit.amqp.DeliveryHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leanix-dropkit Show documentation
Show all versions of leanix-dropkit Show documentation
Base functionality for leanIX dropwizard-based services
package net.leanix.dropkit.amqp;
import com.rabbitmq.client.BasicProperties;
/**
* Interface for class which transform mq bytes into an event.
*
*
*/
public interface DeliveryHandler {
/**
* Handles the raw event data from the queue.
*
* @param props
* @param data
*/
public void handleDelivery(BasicProperties props, byte[] data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy