case class RoutingDescriptor(exchange: Exchange, routingKey: String, deliveryMode: Option[DeliveryMode], mandatory: Boolean, immediate: Boolean) extends Product with Serializable
Specifies routing and send parameters
- exchange
for the message to be sent to
- routingKey
the exchange uses this to decide which queue(s) the message is to be added to
- deliveryMode
defines whether a message should be persisted if the queue it is on is persisted
- mandatory
a message with this flag will be returned by the exchange if it finds that no queues match the routingKey
- immediate
a message with this flag will only be delivered if a matching queue has a ready consumer, if not it is returned
- Alphabetic
- By Inheritance
- RoutingDescriptor
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
RoutingDescriptor(exchange: Exchange, routingKey: String, deliveryMode: Option[DeliveryMode], mandatory: Boolean, immediate: Boolean)
- exchange
for the message to be sent to
- routingKey
the exchange uses this to decide which queue(s) the message is to be added to
- deliveryMode
defines whether a message should be persisted if the queue it is on is persisted
- mandatory
a message with this flag will be returned by the exchange if it finds that no queues match the routingKey
- immediate
a message with this flag will only be delivered if a matching queue has a ready consumer, if not it is returned
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- val deliveryMode: Option[DeliveryMode]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val exchange: Exchange
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val immediate: Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val mandatory: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val routingKey: String
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )