
ru.tinkoff.gatling.amqp.javaapi.protocol.AmqpQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gatling-amqp-plugin_2.13 Show documentation
Show all versions of gatling-amqp-plugin_2.13 Show documentation
Plugin for support performance testing with AMQP in Gatling
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