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

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

package com.rabbitmq.client.impl.recovery;

import com.rabbitmq.client.Channel;

/**
 * @since 3.3.0
 */
public class RecordedEntity {
    protected final AutorecoveringChannel channel;

    public RecordedEntity(AutorecoveringChannel channel) {
        this.channel = channel;
    }

    public AutorecoveringChannel getChannel() {
        return channel;
    }

    public Channel getDelegateChannel() {
        return channel.getDelegate();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy