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

io.quarkus.virtual.threads.VirtualThreads Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.virtual.threads;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import jakarta.enterprise.util.AnnotationLiteral;
import jakarta.inject.Qualifier;

/**
 * Qualifies an injected virtual threads executor service.
 */
@Qualifier
@Target({ FIELD, METHOD, PARAMETER })
@Retention(RUNTIME)
public @interface VirtualThreads {

    final class Literal extends AnnotationLiteral implements VirtualThreads {

        public static final Literal INSTANCE = new Literal();

        private static final long serialVersionUID = 1L;

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy