final class Delivery[A] extends AnyRef

Received messages from the producer are wrapped in Delivery when sent to the consumer. When the message has been processed the consumer is supposed to send Confirmed back to the ConsumerController via the confirmTo.

Source
ConsumerController.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Delivery
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Delivery(message: A, confirmTo: [Confirmed], producerId: String, seqNr: SeqNr)

Value Members

  1. val confirmTo: [Confirmed]
  2. val message: A
  3. val producerId: String
  4. val seqNr: SeqNr
  5. def toString(): String
    Definition Classes
    Delivery → AnyRef → Any