io.kestra.runner.h2.H2QueueEnabled Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdbc-h2 Show documentation
Show all versions of jdbc-h2 Show documentation
The modern, scalable orchestrator & scheduler open source platform
package io.kestra.runner.h2;
import io.micronaut.context.annotation.DefaultImplementation;
import io.micronaut.context.annotation.Requires;
import java.lang.annotation.*;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PACKAGE, ElementType.TYPE})
@Requires(property = "kestra.queue.type", pattern = "h2|memory")
@DefaultImplementation
public @interface H2QueueEnabled {
}