IronMqProducer

org.apache.pekko.stream.connectors.ironmq.scaladsl.IronMqProducer

Attributes

Source
IronMqProducer.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete methods

A Committable aware producer Flow that consume Committable), push messages on IronMq and commit the associated Committable.

A Committable aware producer Flow that consume Committable), push messages on IronMq and commit the associated Committable.

Attributes

Source
IronMqProducer.scala
def atLeastOnceFlow[ToCommit, CommitResult, CommitMat](queueName: String, settings: IronMqSettings, commitFlow: Flow[ToCommit, CommitResult, CommitMat]): Flow[(PushMessage, ToCommit), (Id, CommitResult), CommitMat]

A more generic committable aware producer Flow that can be used for other committable source, like Kafka. The user is responsible to supply the committing flow. The result of the commit is emitted as well as the materialized value of the committing flow.

A more generic committable aware producer Flow that can be used for other committable source, like Kafka. The user is responsible to supply the committing flow. The result of the commit is emitted as well as the materialized value of the committing flow.

Attributes

Source
IronMqProducer.scala

A Committable aware producer Sink that consume Committable) push messages on IronMq and commit the associated Committable.

A Committable aware producer Sink that consume Committable) push messages on IronMq and commit the associated Committable.

Attributes

Source
IronMqProducer.scala
def atLeastOnceSink[ToCommit, CommitResult, CommitMat](queueName: String, settings: IronMqSettings, commitFlow: Flow[ToCommit, CommitResult, CommitMat]): Sink[(PushMessage, ToCommit), CommitMat]

A more generic committable aware producer Sink that can be used for other committable source, like Kafka. The user is responsible to supply the committing flow. The materialized value of the committing flow is returned.

A more generic committable aware producer Sink that can be used for other committable source, like Kafka. The user is responsible to supply the committing flow. The materialized value of the committing flow is returned.

Attributes

Source
IronMqProducer.scala
def flow(queueName: String, settings: IronMqSettings): Flow[PushMessage, Id, NotUsed]

This is plain producer Flow that consume PushMessage and emit Message.Id for each produced message.

This is plain producer Flow that consume PushMessage and emit Message.Id for each produced message.

Attributes

Source
IronMqProducer.scala
def sink(queueName: String, settings: IronMqSettings): Sink[PushMessage, Future[Done]]

A plain producer Sink that consume PushMessage and push them on IronMq.

A plain producer Sink that consume PushMessage and push them on IronMq.

Attributes

Source
IronMqProducer.scala