
ru.tinkoff.gatling.amqp.javaapi.protocol.AmqpExchange 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 com.rabbitmq.client.BuiltinExchangeType;
import java.util.Map;
public class AmqpExchange {
private String name;
private boolean durable;
private BuiltinExchangeType exchangeType;
private boolean autoDelete;
private Map arguments;
public AmqpExchange(String name, BuiltinExchangeType exchangeType, boolean durable, boolean autoDelete, Map arguments) {
this.name = name;
this.durable = durable;
this.exchangeType = exchangeType;
this.autoDelete = autoDelete;
this.arguments = arguments;
}
public String getName() {
return name;
}
public BuiltinExchangeType getExchangeType() {
return exchangeType;
}
public boolean getDurable() {
return durable;
}
public boolean getAutoDelete() {
return autoDelete;
}
public Map getArguments() {
return arguments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy