io.smallrye.reactive.messaging.aws.sqs.SqsReceiveMessageRequestCustomizer 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;
import software.amazon.awssdk.services.sqs.model.ReceiveMessageRequest;
/**
* Implementations of this interface can be used to customize the {@link ReceiveMessageRequest} before it is sent to the SQS
* service.
* CDI beans that implement this interface will be discovered using the {@link io.smallrye.common.annotation.Identifier}
* qualifier,
* matched against the configuration or the channel name.
*/
public interface SqsReceiveMessageRequestCustomizer {
void customize(ReceiveMessageRequest.Builder builder);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy