
ru.tinkoff.gatling.amqp.javaapi.request.RequestReplyDslBuilderExchange 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.request;
import static io.gatling.javaapi.core.internal.Expressions.*;
public class RequestReplyDslBuilderExchange {
private final ru.tinkoff.gatling.amqp.request.RequestReplyDslBuilderExchange wrapped;
public RequestReplyDslBuilderExchange(ru.tinkoff.gatling.amqp.request.RequestReplyDslBuilderExchange wrapped) {
this.wrapped = wrapped;
}
public RequestReplyDslBuilderMessage directExchange(String name, String routingKey) {
return new RequestReplyDslBuilderMessage(wrapped.directExchange(toStringExpression(name), toStringExpression(routingKey)));
}
public RequestReplyDslBuilderMessage topicExchange(String name, String routingKey) {
return new RequestReplyDslBuilderMessage(wrapped.topicExchange(toStringExpression(name), toStringExpression(routingKey)));
}
public RequestReplyDslBuilderMessage queueExchange(String name) {
return new RequestReplyDslBuilderMessage(wrapped.queueExchange(toStringExpression(name)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy