akka.stream.alpakka.sqs.scaladsl.SqsAckSink.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-stream-alpakka-sqs_2.13 Show documentation
Show all versions of akka-stream-alpakka-sqs_2.13 Show documentation
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
The newest version!
/*
* Copyright (C) since 2016 Lightbend Inc.
*/
package akka.stream.alpakka.sqs.scaladsl
import akka.Done
import akka.stream.alpakka.sqs.{MessageAction, SqsAckGroupedSettings, SqsAckSettings}
import akka.stream.scaladsl.{Keep, Sink}
import software.amazon.awssdk.services.sqs.SqsAsyncClient
import scala.concurrent.Future
/**
* Scala API to create acknowledging SQS sinks.
*/
object SqsAckSink {
/**
* creates a [[akka.stream.scaladsl.Sink Sink]] for ack a single SQS message at a time using an [[software.amazon.awssdk.services.sqs.SqsAsyncClient]].
*/
def apply(queueUrl: String, settings: SqsAckSettings = SqsAckSettings.Defaults)(
implicit sqsClient: SqsAsyncClient
): Sink[MessageAction, Future[Done]] =
SqsAckFlow.apply(queueUrl, settings).toMat(Sink.ignore)(Keep.right)
/**
* creates a [[akka.stream.scaladsl.Sink Sink]] for ack grouped SQS messages using an [[software.amazon.awssdk.services.sqs.SqsAsyncClient]].
*/
def grouped(queueUrl: String, settings: SqsAckGroupedSettings = SqsAckGroupedSettings.Defaults)(
implicit sqsClient: SqsAsyncClient
): Sink[MessageAction, Future[Done]] =
SqsAckFlow.grouped(queueUrl, settings).toMat(Sink.ignore)(Keep.right)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy