All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.leanix.dropkit.amqp.DeliveryHandler Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
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