p

io.gatling.jms

request

package request

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class BytesJmsMessage (bytes: Expression[Array[Byte]]) extends JmsMessage with Product with Serializable
  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

    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
  4. sealed trait JmsMessage extends AnyRef

    Provides the enumeration of JMSMessage types that the implementation supports

  5. case class JmsQueue (name: String) extends JmsDestination with Product with Serializable
  6. case class JmsReplyRequestBuilder (attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable
  7. case class JmsRequestBuilderBase (requestName: String) extends Product with Serializable
  8. case class JmsRequestReplyBuilderMessage (requestName: String, destination: JmsDestination, replyDest: JmsDestination, messageSelector: Option[String], configuration: GatlingConfiguration) extends Product with Serializable

    Message builder for rereply.

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

    Builder for rereply.

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

    Message buildeer for sending.

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

    Builder for sending.

  12. case class JmsSendRequestBuilder (attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable
  13. case class JmsTopic (name: String) extends JmsDestination with Product with Serializable
  14. case class MapJmsMessage (map: Expression[Map[String, Any]]) extends JmsMessage with Product with Serializable
  15. case class ObjectJmsMessage (o: Expression[Serializable]) extends JmsMessage with Product with Serializable
  16. case class TextJmsMessage (text: Expression[String]) extends JmsMessage with Product with Serializable

Value Members

  1. object JmsTemporaryQueue extends JmsDestination with Product with Serializable
  2. object JmsTemporaryTopic extends JmsDestination with Product with Serializable

Ungrouped