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

ru.tinkoff.gatling.amqp.javaapi.protocol.AmqpQueue Maven / Gradle / Ivy

The newest version!
package ru.tinkoff.gatling.amqp.javaapi.protocol;

import java.util.Map;

public class AmqpQueue {
    private String name;
    private boolean durable;
    private boolean exclusive;
    private boolean autoDelete;
    private Map arguments;

    public AmqpQueue(String name, boolean durable, boolean exclusive, boolean autoDelete, Map arguments) {
        this.name = name;
        this.durable = durable;
        this.exclusive = exclusive;
        this.autoDelete = autoDelete;
        this.arguments = arguments;
    }

    public String getName(){
        return name;
    }

    public boolean getDurable(){
        return durable;
    }

    public boolean getExclusive(){
        return exclusive;
    }

    public boolean getAutoDelete(){
        return autoDelete;
    }

    public Map getArguments(){
        return arguments;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy