![JAR search and dependency download from the Maven repository](/logo.png)
io.smallrye.reactive.messaging.aws.sqs.ack.SqsNothingAckHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-reactive-messaging-aws-sqs Show documentation
Show all versions of smallrye-reactive-messaging-aws-sqs Show documentation
A module for Smallrye reactive messaging integration with AWS SQS Service
The newest version!
package io.smallrye.reactive.messaging.aws.sqs.ack;
import io.smallrye.mutiny.Uni;
import io.smallrye.reactive.messaging.aws.sqs.SqsAckHandler;
import io.smallrye.reactive.messaging.aws.sqs.SqsMessage;
public class SqsNothingAckHandler implements SqsAckHandler {
@Override
public Uni handle(SqsMessage message) {
return Uni.createFrom().voidItem()
.emitOn(message::runOnMessageContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy