Package

io.gatling.jms

request

Permalink

package request

Visibility
  1. Public
  2. All

Type Members

  1. case class BytesJmsMessage(bytes: Expression[Array[Byte]]) extends JmsMessage with Product with Serializable

    Permalink
  2. case class JmsAttributes(requestName: String, destination: JmsDestination, selector: Option[String], message: JmsMessage, messageProperties: Map[Expression[String], Expression[Any]] = Map.empty, jmsType: Option[Expression[String]] = None, checks: List[JmsCheck] = Nil) extends Product with Serializable

    Permalink

    JmsAttributes carries around the JMS settings.

    JmsAttributes carries around the JMS settings.

    As the JmsReqReplyBuilder is building a request from the DSL, it uses this object to represent the in progress request. Once the request is built it can then be used so that the JmsReqReplyAction knows exactly what message to send.

  3. sealed trait JmsDestination extends AnyRef

    Permalink
  4. sealed trait JmsMessage extends AnyRef

    Permalink

    Provides the enumeration of JMSMessage types that the implementation supports

  5. case class JmsQueue(name: String) extends JmsDestination with Product with Serializable

    Permalink
  6. case class JmsReplyRequestBuilder(attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable

    Permalink
  7. case class JmsRequestBuilderBase(requestName: String) extends Product with Serializable

    Permalink
  8. case class JmsRequestReplyBuilderMessage(requestName: String, destination: JmsDestination, replyDest: JmsDestination, messageSelector: Option[String], configuration: GatlingConfiguration) extends Product with Serializable

    Permalink

    Message builder for rereply.

  9. case class JmsRequestReplyBuilderQueue(requestName: String, configuration: GatlingConfiguration) extends Product with Serializable

    Permalink

    Builder for rereply.

  10. case class JmsRequestSendBuilderMessage(requestName: String, destination: JmsDestination, configuration: GatlingConfiguration) extends Product with Serializable

    Permalink

    Message buildeer for sending.

  11. case class JmsRequestSendBuilderQueue(requestName: String, configuration: GatlingConfiguration) extends Product with Serializable

    Permalink

    Builder for sending.

  12. case class JmsSendRequestBuilder(attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable

    Permalink
  13. case class JmsTopic(name: String) extends JmsDestination with Product with Serializable

    Permalink
  14. case class MapJmsMessage(map: Expression[Map[String, Any]]) extends JmsMessage with Product with Serializable

    Permalink
  15. case class ObjectJmsMessage(o: Expression[Serializable]) extends JmsMessage with Product with Serializable

    Permalink
  16. case class TextJmsMessage(text: Expression[String]) extends JmsMessage with Product with Serializable

    Permalink

Value Members

  1. object JmsTemporaryQueue extends JmsDestination with Product with Serializable

    Permalink
  2. object JmsTemporaryTopic extends JmsDestination with Product with Serializable

    Permalink

Ungrouped