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

io.quarkus.grpc.runtime.devmode.CollectStreams Maven / Gradle / Ivy

There is a newer version: 3.15.1
Show newest version
package io.quarkus.grpc.runtime.devmode;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import jakarta.interceptor.InterceptorBinding;

/**
 *
 * @see StreamCollectorInterceptor
 */
@InterceptorBinding
@Target({ TYPE })
@Retention(RUNTIME)
public @interface CollectStreams {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy