All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.springwolf.bindings.sqs.annotations.SqsAsyncQueueBinding Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
// 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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy