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

io.elastic.sailor.AMQPWrapperInterface Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package io.elastic.sailor;

import com.rabbitmq.client.AMQP;

public interface AMQPWrapperInterface {

    void connect();

    void subscribeConsumer();

    void sendData(byte[] payload, AMQP.BasicProperties options);

    void sendError(byte[] payload, AMQP.BasicProperties options);

    void sendRebound(byte[] payload, AMQP.BasicProperties options);

    void sendSnapshot(byte[] payload, AMQP.BasicProperties options);

    void ack(Long deliveryTag);

    void reject(Long deliveryTag);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy