
ru.tinkoff.gatling.amqp.protocol.AmqpComponents.scala 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.protocol
import io.gatling.core.protocol.ProtocolComponents
import io.gatling.core.session.Session
import ru.tinkoff.gatling.amqp.client.{AmqpConnectionPool, TrackerPool}
case class AmqpComponents(
protocol: AmqpProtocol,
connectionPublishPool: AmqpConnectionPool,
connectionReplyPool: AmqpConnectionPool,
trackerPool: TrackerPool,
) extends ProtocolComponents {
override def onStart: Session => Session = Session.Identity
override def onExit: Session => Unit = ProtocolComponents.NoopOnExit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy