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

com.rabbitmq.client.impl.recovery.RecordedExchangeBinding Maven / Gradle / Ivy

Go to download

The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.

There is a newer version: 5.22.0
Show newest version
package com.rabbitmq.client.impl.recovery;

import java.io.IOException;

/**
 * @since 3.3.0
 */
public class RecordedExchangeBinding extends RecordedBinding {
    public RecordedExchangeBinding(AutorecoveringChannel channel) {
        super(channel);
    }

    public void recover() throws IOException {
        this.channel.getDelegate().exchangeBind(this.destination, this.source, this.routingKey, this.arguments);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy