Package

io.gatling.jms

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. case class JmsComponents(jmsProtocol: JmsProtocol, tracker: ActorRef) extends ProtocolComponents with Product with Serializable

    Permalink
  2. trait JmsMessageMatcher extends AnyRef

    Permalink

    define trait for message matching logic with separate request/response to see how it can be used check JmsDefaultMessageMatcher

  3. case class JmsProtocol(contextFactory: String, connectionFactoryName: String, url: String, credentials: Option[Credentials], anonymousConnect: Boolean, listenerCount: Int, deliveryMode: Int, receiveTimeout: Option[Long], messageMatcher: JmsMessageMatcher) extends Protocol with Product with Serializable

    Permalink
  4. case class JmsProtocolBuilder(connectionFactoryName: String, url: String, credentials: Option[Credentials], anonymousConnect: Boolean, contextFactory: String, listenerCount: Int, deliveryMode: Int = DeliveryMode.NON_PERSISTENT, messageMatcher: JmsMessageMatcher = MessageIDMessageMatcher, receiveTimeout: Option[Long] = None) extends Product with Serializable

    Permalink
  5. case class JmsProtocolBuilderContextFactoryStep(connectionFactoryName: String, url: String, credentials: Option[Credentials] = None, anonymousConnect: Boolean = true) extends Product with Serializable

    Permalink
  6. case class JmsProtocolBuilderListenerCountStep(connectionFactoryName: String, url: String, credentials: Option[Credentials], anonymousConnect: Boolean, contextFactory: String) extends Product with Serializable

    Permalink
  7. case class JmsProtocolBuilderUrlStep(connectionFactoryName: String) extends Product with Serializable

    Permalink

Value Members

  1. object CorrelationIDMessageMatcher extends JmsMessageMatcher

    Permalink
  2. object JmsProtocol extends Serializable

    Permalink
  3. object JmsProtocolBuilderBase extends Product with Serializable

    Permalink

    JmsProtocolBuilder allows building of the JMS protocol

    JmsProtocolBuilder allows building of the JMS protocol

    This allows multiple scenarios or jms methods to refer to a single protocol configuration.

    See your JMS provider documentation for information on the values to set here.

  4. object MessageIDMessageMatcher extends JmsMessageMatcher

    Permalink

Ungrouped