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

io.quarkus.grpc.runtime.GrpcClientRecorder Maven / Gradle / Ivy

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

import java.util.Set;

import io.quarkus.runtime.RuntimeValue;
import io.quarkus.runtime.annotations.Recorder;

@Recorder
public class GrpcClientRecorder {

    public RuntimeValue initClientInterceptorStorage(Set> perClientInterceptors,
            Set> globalInterceptors) {
        return new RuntimeValue<>(new ClientInterceptorStorage(perClientInterceptors, globalInterceptors));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy