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

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

package com.rabbitmq.client.impl.recovery;

/**
 * @since 3.3.0
 */
public class RecordedNamedEntity extends RecordedEntity {
    protected String name;

    public RecordedNamedEntity(AutorecoveringChannel channel, String name) {
        super(channel);
        this.name = name;
    }

    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy