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

io.quarkus.websockets.next.Open Maven / Gradle / Ivy

There is a newer version: 3.17.2
Show newest version
package io.quarkus.websockets.next;

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.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import jakarta.enterprise.event.Event;
import jakarta.enterprise.event.ObservesAsync;
import jakarta.enterprise.util.AnnotationLiteral;
import jakarta.inject.Qualifier;

/**
 * This qualifier is used for CDI events fired asynchronously when a new WebSocket connection is opened.
 * 

* The payload is {@link WebSocketConnection} for server connections and {@link WebSocketClientConnection} for client * connections. * * @see ObservesAsync * @see Event#fireAsync(Object) */ @Qualifier @Documented @Retention(RUNTIME) @Target({ METHOD, FIELD, PARAMETER, TYPE }) public @interface Open { /** * Supports inline instantiation of the {@link Open} qualifier. */ public static final class Literal extends AnnotationLiteral implements Open { public static final Literal INSTANCE = new Literal(); private static final long serialVersionUID = 1L; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy