package request
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- final case class BytesJmsMessage(bytes: Expression[Array[Byte]]) extends JmsMessage with Product with Serializable
- final case class JmsAttributes(requestName: Expression[String], destination: JmsDestination, selector: Option[Expression[String]], message: JmsMessage, messageProperties: Map[Expression[String], Expression[Any]], jmsType: Option[Expression[String]], checks: List[JmsCheck]) 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
- final class JmsDslBuilderBase extends AnyRef
- sealed trait JmsMessage extends AnyRef
- final case class MapJmsMessage(map: Expression[Map[String, Any]]) extends JmsMessage with Product with Serializable
- final case class ObjectJmsMessage(obj: Expression[Serializable]) extends JmsMessage with Product with Serializable
- final case class RequestReplyDslBuilder(attributes: JmsAttributes, factory: (JmsAttributes) => ActionBuilder) extends Product with Serializable
- final case class SendDslBuilder(attributes: JmsAttributes, factory: (JmsAttributes) => ActionBuilder) extends Product with Serializable
- final case class TextJmsMessage(txt: Expression[String]) extends JmsMessage with Product with Serializable
Value Members
- object JmsAttributes extends Serializable
- object JmsDestination
- object RequestReplyDslBuilder extends Serializable
- object SendDslBuilder extends Serializable