Skip navigation links
A C D G H I N P R S T 

A

AbstractChannelFactory - Class in net.devh.springboot.autoconfigure.grpc.client
This abstract channel factory contains some shared code for other GrpcChannelFactorys.
AbstractChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, NameResolver.Factory, GlobalClientInterceptorRegistry) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Creates a new AbstractChannelFactory with eager initialized references.
AbstractChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, Function<T, NameResolver.Factory>, GlobalClientInterceptorRegistry) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Creates a new AbstractChannelFactory with partially lazy initialized references.
addClientInterceptors(GlobalClientInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.client.AnnotationGlobalClientInterceptorConfigurer
 
addClientInterceptors(GlobalClientInterceptorRegistry) - Method in interface net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorConfigurer
Adds the ClientInterceptors that should be registered globally to the given registry.
addClientInterceptors(GlobalClientInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorConfigurerAdapter
Deprecated.
 
addClientInterceptors(ClientInterceptor) - Method in class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorRegistry
Adds the given ClientInterceptor to the list of globally registered interceptors.
addDiscoveryClientNameResolver(DiscoveryClientNameResolver) - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientChannelFactory
 
AddressChannelFactory - Class in net.devh.springboot.autoconfigure.grpc.client
This channel factory creates new Channels based on GrpcChannelProperties that can be configured via application properties.
AddressChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, GlobalClientInterceptorRegistry) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AddressChannelFactory
Creates a new AddressChannelFactory that will use the client name and the properties to resolve the grpc server address.
addressChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, GlobalClientInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
AddressChannelNameResolver - Class in net.devh.springboot.autoconfigure.grpc.client
The AddressChannelNameResolver configures the hosts and the associated ports for Channels to use based on GrpcChannelProperties.
AddressChannelNameResolver(String, GrpcChannelProperties, Attributes, SharedResourceHolder.Resource<ExecutorService>) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AddressChannelNameResolver
 
AddressChannelResolverFactory - Class in net.devh.springboot.autoconfigure.grpc.client
A name resolver factory that will create an AddressChannelNameResolver based on the target uri.
AddressChannelResolverFactory(GrpcChannelsProperties) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AddressChannelResolverFactory
 
AnnotationGlobalClientInterceptorConfigurer - Class in net.devh.springboot.autoconfigure.grpc.client
Automatically find and configure annotated global ClientInterceptors.
AnnotationGlobalClientInterceptorConfigurer() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.AnnotationGlobalClientInterceptorConfigurer
 
annotationGlobalClientInterceptorConfigurer() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 

C

close() - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Closes this channel factory and the channels created by this instance.
close() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientBeanPostProcessor
 
configure(NettyChannelBuilder, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Configures the given netty channel builder.
configureCompression(NettyChannelBuilder, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Configures the compression options that should be used by the channel.
configureKeepAlive(NettyChannelBuilder, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Configures the keep alive options that should be used by the channel.
configureLimits(NettyChannelBuilder, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Configures limits such as max message sizes that should be used by the channel.
configureSecurity(NettyChannelBuilder, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Configures the security options that should be used by the channel.
createChannel(String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
 
createChannel(String, List<ClientInterceptor>) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
 
createChannel(String) - Method in interface net.devh.springboot.autoconfigure.grpc.client.GrpcChannelFactory
Creates a new channel for the given service name.
createChannel(String, List<ClientInterceptor>) - Method in interface net.devh.springboot.autoconfigure.grpc.client.GrpcChannelFactory
Creates a new channel for the given service name.

D

DEFAULT - Static variable in class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties
 
DEFAULT_HOST - Static variable in class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties
 
DEFAULT_PORT - Static variable in class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties
 
DiscoveryClientChannelFactory - Class in net.devh.springboot.autoconfigure.grpc.client
This channel factory creates new Channels using a service discovery.
DiscoveryClientChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, DiscoveryClient, GlobalClientInterceptorRegistry) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientChannelFactory
 
discoveryClientChannelFactory(GrpcChannelsProperties, LoadBalancer.Factory, DiscoveryClient, GlobalClientInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration.DiscoveryGrpcClientAutoConfiguration
 
DiscoveryClientNameResolver - Class in net.devh.springboot.autoconfigure.grpc.client
The DiscoveryClientNameResolver configures the hosts and the associated ports for Channels to use based on a DiscoveryClient.
DiscoveryClientNameResolver(String, DiscoveryClient, Attributes, SharedResourceHolder.Resource<ScheduledExecutorService>, SharedResourceHolder.Resource<ExecutorService>) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientNameResolver
 
DiscoveryClientResolverFactory - Class in net.devh.springboot.autoconfigure.grpc.client
A name resolver factory that will create an DiscoveryClientNameResolver based on the target uri.
DiscoveryClientResolverFactory(DiscoveryClient, DiscoveryClientChannelFactory) - Constructor for class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientResolverFactory
 
DiscoveryGrpcClientAutoConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration.DiscoveryGrpcClientAutoConfiguration
 

G

getChannel(String) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelsProperties
 
getDefaultScheme() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelResolverFactory
 
getDefaultScheme() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientResolverFactory
 
getMaxInboundMessageSize() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties
Gets the maximum message size in bytes allowed to be received by the channel.
getPropertiesFor(String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Gets the channel properties for the given client name.
getServiceAuthority() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelNameResolver
 
getServiceAuthority() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientNameResolver
 
GlobalClientInterceptorConfigurer - Interface in net.devh.springboot.autoconfigure.grpc.client
This configurer can be used to register new global ClientInterceptors.
GlobalClientInterceptorConfigurerAdapter - Class in net.devh.springboot.autoconfigure.grpc.client
Deprecated.
GlobalClientInterceptorConfigurerAdapter() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorConfigurerAdapter
Deprecated.
 
GlobalClientInterceptorRegistry - Class in net.devh.springboot.autoconfigure.grpc.client
The global client interceptor registry keeps references to all ClientInterceptors that should be registered globally.
GlobalClientInterceptorRegistry() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorRegistry
 
globalClientInterceptorRegistry() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
globalTraceClientInterceptorConfigurerAdapter(GrpcTracing) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration.TraceClientAutoConfiguration
 
GrpcChannelFactory - Interface in net.devh.springboot.autoconfigure.grpc.client
This factory creates grpc Channels for a given service name.
GrpcChannelProperties - Class in net.devh.springboot.autoconfigure.grpc.client
The channel properties for a single named grpc channel or service reference.
GrpcChannelProperties() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties
 
GrpcChannelProperties.Security - Class in net.devh.springboot.autoconfigure.grpc.client
 
GrpcChannelsProperties - Class in net.devh.springboot.autoconfigure.grpc.client
The container for named channel properties.
GrpcChannelsProperties() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelsProperties
 
grpcChannelsProperties() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
GrpcClient - Annotation Type in net.devh.springboot.autoconfigure.grpc.client
An annotation for fields of type Channel or subclasses of AbstractStub/gRPC client services.
GrpcClientAutoConfiguration - Class in net.devh.springboot.autoconfigure.grpc.client
The auto configuration used by Spring-Boot that contains all beans to create and inject grpc clients into beans.
GrpcClientAutoConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
GrpcClientAutoConfiguration.DiscoveryGrpcClientAutoConfiguration - Class in net.devh.springboot.autoconfigure.grpc.client
 
GrpcClientAutoConfiguration.TraceClientAutoConfiguration - Class in net.devh.springboot.autoconfigure.grpc.client
 
grpcClientBeanPostProcessor() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
GrpcClientBeanPostProcessor - Class in net.devh.springboot.autoconfigure.grpc.client
This BeanPostProcessor searches for fields in beans that are annotated with GrpcClient and sets them.
GrpcClientBeanPostProcessor() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcClientBeanPostProcessor
 
GrpcGlobalClientInterceptor - Annotation Type in net.devh.springboot.autoconfigure.grpc.client
Annotation for gRPC ClientInterceptors to apply them globally.
grpcLoadBalancerFactory() - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration
 
grpcTracing(Tracing) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration.TraceClientAutoConfiguration
 

H

heartbeat(HeartbeatEvent) - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientChannelFactory
 

I

init() - Method in class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorRegistry
 
isAvailable() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelResolverFactory
 
isAvailable() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientResolverFactory
 

N

net.devh.springboot.autoconfigure.grpc.client - package net.devh.springboot.autoconfigure.grpc.client
 
newManagedChannel(String) - Method in class net.devh.springboot.autoconfigure.grpc.client.AbstractChannelFactory
Creates a new ManagedChannel for the given client name.
newNameResolver(URI, Attributes) - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelResolverFactory
 
newNameResolver(URI, Attributes) - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientResolverFactory
 

P

postProcessAfterInitialization(Object, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientBeanPostProcessor
 
postProcessBeforeInitialization(Object, String) - Method in class net.devh.springboot.autoconfigure.grpc.client.GrpcClientBeanPostProcessor
 
priority() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelResolverFactory
 
priority() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientResolverFactory
 

R

refresh() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelNameResolver
 
refresh() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientNameResolver
 

S

Security() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcChannelProperties.Security
 
setApplicationContext(ApplicationContext) - Method in class net.devh.springboot.autoconfigure.grpc.client.GlobalClientInterceptorRegistry
 
shutdown() - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelNameResolver
 
shutdown() - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientNameResolver
 
start(NameResolver.Listener) - Method in class net.devh.springboot.autoconfigure.grpc.client.AddressChannelNameResolver
 
start(NameResolver.Listener) - Method in class net.devh.springboot.autoconfigure.grpc.client.DiscoveryClientNameResolver
 

T

TraceClientAutoConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.client.GrpcClientAutoConfiguration.TraceClientAutoConfiguration
 
A C D G H I N P R S T 
Skip navigation links