io.quarkus.grpc.runtime.GrpcClientRecorder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-grpc Show documentation
Show all versions of quarkus-grpc Show documentation
Serve and consume gRPC services
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));
}
}