Packages

object AmqpSink

Source
AmqpSink.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AmqpSink
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(settings: AmqpWriteSettings): Sink[WriteMessage, Future[Done]]

    Creates an AmqpSink that accepts WriteMessage elements.

    Creates an AmqpSink that accepts WriteMessage elements.

    This stage materializes to a Future of Done, which can be used to know when the Sink completes, either normally or because of an amqp failure.

  2. def replyTo(settings: AmqpReplyToSinkSettings): Sink[WriteMessage, Future[Done]]

    Connects to an AMQP server upon materialization and sends incoming messages to the server.

    Connects to an AMQP server upon materialization and sends incoming messages to the server. Each materialized sink will create one connection to the broker. This stage sends messages to the queue named in the replyTo options of the message instead of from settings declared at construction.

    This stage materializes to a Future of Done, which can be used to know when the Sink completes, either normally or because of an amqp failure.

  3. def simple(settings: AmqpWriteSettings): Sink[ByteString, Future[Done]]

    Creates an AmqpSink that accepts ByteString elements.

    Creates an AmqpSink that accepts ByteString elements.

    This stage materializes to a Future of Done, which can be used to know when the Sink completes, either normally or because of an amqp failure.