
ru.tinkoff.gatling.amqp.client.AmqpMessageTracker.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.client
import akka.actor.ActorRef
import io.gatling.core.action.Action
import io.gatling.core.session.Session
import ru.tinkoff.gatling.amqp.AmqpCheck
import ru.tinkoff.gatling.amqp.client.AmqpMessageTrackerActor.MessagePublished
class AmqpMessageTracker(actor: ActorRef) {
def track(
matchId: String,
sent: Long,
replyTimeout: Long,
checks: List[AmqpCheck],
session: Session,
next: Action,
requestName: String,
): Unit =
actor ! MessagePublished(
matchId,
sent,
replyTimeout,
checks,
session,
next,
requestName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy