
ru.tinkoff.gatling.amqp.action.package.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
import com.typesafe.scalalogging.StrictLogging
import ru.tinkoff.gatling.amqp.request.AmqpProtocolMessage
package object action {
trait AmqpLogging extends StrictLogging {
def logMessage(text: => String, msg: AmqpProtocolMessage): Unit = {
logger.debug(text)
logger.trace(msg.toString)
}
}
sealed trait Dest
case class DirectDest(exchName: String, rk: String) extends Dest
case class QueueDest(qName: String) extends Dest
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy