Packages

case class Message(messageId: Id, body: String, noOfReservations: Int) extends Product with Serializable

The message consumed from IronMq.

messageId

The unique id of the message.

body

The pushed message content.

noOfReservations

It is the count of how many time the message has been reserved (and released or expired) previously

Source
domain.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Message
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Message(messageId: Id, body: String, noOfReservations: Int)

    messageId

    The unique id of the message.

    body

    The pushed message content.

    noOfReservations

    It is the count of how many time the message has been reserved (and released or expired) previously

Value Members

  1. val body: String
  2. val messageId: Id
  3. val noOfReservations: Int
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product