io.github.springwolf.bindings.sqs.annotations.SqsAsyncQueueBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springwolf-sqs-binding Show documentation
Show all versions of springwolf-sqs-binding Show documentation
Automated JSON API documentation for AWS SQS Bindings
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.bindings.sqs.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
@Inherited
public @interface SqsAsyncQueueBinding {
String name() default "";
boolean fifoQueue() default true;
int deliveryDelay() default 0;
}