package request
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class BytesJmsMessage (bytes: Expression[Array[Byte]]) extends JmsMessage with Product with Serializable
-
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.
- sealed trait JmsDestination extends AnyRef
-
sealed
trait
JmsMessage
extends AnyRef
Provides the enumeration of JMSMessage types that the implementation supports
- case class JmsQueue (name: String) extends JmsDestination with Product with Serializable
- case class JmsReplyRequestBuilder (attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable
- case class JmsRequestBuilderBase (requestName: String) extends Product with Serializable
-
case class
JmsRequestReplyBuilderMessage
(requestName: String, destination: JmsDestination, replyDest: JmsDestination, messageSelector: Option[String], configuration: GatlingConfiguration) extends Product with Serializable
Message builder for rereply.
-
case class
JmsRequestReplyBuilderQueue
(requestName: String, configuration: GatlingConfiguration) extends Product with Serializable
Builder for rereply.
-
case class
JmsRequestSendBuilderMessage
(requestName: String, destination: JmsDestination, configuration: GatlingConfiguration) extends Product with Serializable
Message buildeer for sending.
-
case class
JmsRequestSendBuilderQueue
(requestName: String, configuration: GatlingConfiguration) extends Product with Serializable
Builder for sending.
- case class JmsSendRequestBuilder (attributes: JmsAttributes, factory: (JmsAttributes) ⇒ ActionBuilder) extends Product with Serializable
- case class JmsTopic (name: String) extends JmsDestination with Product with Serializable
- case class MapJmsMessage (map: Expression[Map[String, Any]]) extends JmsMessage with Product with Serializable
- case class ObjectJmsMessage (o: Expression[Serializable]) extends JmsMessage with Product with Serializable
- case class TextJmsMessage (text: Expression[String]) extends JmsMessage with Product with Serializable
Value Members
- object JmsTemporaryQueue extends JmsDestination with Product with Serializable
- object JmsTemporaryTopic extends JmsDestination with Product with Serializable