Skip navigation links
A C D F G H I N S T V 

A

addCodec(GrpcCodecDefinition) - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Adds the given grpc codec definition to this factory.
addCodec(GrpcCodecDefinition) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 
addServerInterceptors(GlobalServerInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.server.AnnotationGlobalServerInterceptorConfigurer
 
addServerInterceptors(GlobalServerInterceptorRegistry) - Method in interface net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorConfigurer
Adds the ServerInterceptors that should be registered globally to the given registry.
addServerInterceptors(GlobalServerInterceptorRegistry) - Method in class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorConfigurerAdapter
Deprecated.
 
addServerInterceptors(ServerInterceptor) - Method in class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorRegistry
Adds the given ServerInterceptor to the list of globally registered interceptors.
addService(GrpcServiceDefinition) - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Adds the given grpc service definition to this factory.
addService(GrpcServiceDefinition) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 
AnnotationGlobalServerInterceptorConfigurer - Class in net.devh.springboot.autoconfigure.grpc.server
Automatically find and configure annotated global ServerInterceptors.
AnnotationGlobalServerInterceptorConfigurer() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.AnnotationGlobalServerInterceptorConfigurer
 
annotationGlobalServerInterceptorConfigurer() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
AnnotationGrpcServiceDiscoverer - Class in net.devh.springboot.autoconfigure.grpc.server
A GrpcServiceDiscoverer that searches for beans with the GrpcService and GrpcCodec annotations.
AnnotationGrpcServiceDiscoverer() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.AnnotationGrpcServiceDiscoverer
 

C

CodecType - Enum in net.devh.springboot.autoconfigure.grpc.server.codec
The type of the codec.
configure(NettyServerBuilder) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Configures the given netty server builder.
configureCodecs(NettyServerBuilder) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Configures the codecs that should be supported by the server.
configureLimits(NettyServerBuilder) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Configures limits such as max message sizes that should be used by the server.
configureSecurity(NettyServerBuilder) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Configures the security options that should be used by the server.
configureServices(NettyServerBuilder) - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Configures the services that should be served by the server.
ConsulGrpcRegistrationCustomizer - Class in net.devh.springboot.autoconfigure.grpc.server
Adds the grpc server port to the consul registration.
ConsulGrpcRegistrationCustomizer(GrpcServerProperties) - Constructor for class net.devh.springboot.autoconfigure.grpc.server.ConsulGrpcRegistrationCustomizer
Creates a new ConsulGrpcRegistrationCustomizer which will read the grpc server port from the given GrpcServerProperties.
consulGrpcRegistrationCustomizer(GrpcServerProperties) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcMetedataConsulConfiguration
 
createAndStartGrpcServer() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
Creates and starts the grpc server.
createServer() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Creates a new grpc server with the stored options.
createServer() - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 
customize(ConsulRegistration) - Method in class net.devh.springboot.autoconfigure.grpc.server.ConsulGrpcRegistrationCustomizer
 

D

defaultGrpcServerProperties() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
defaultGrpcServiceFinder() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
destroy() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Destroys this factory.
destroy() - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 

F

findGrpcCodec() - Method in class net.devh.springboot.autoconfigure.grpc.server.AnnotationGrpcServiceDiscoverer
 
findGrpcCodec() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDiscoverer
Find the grpc codecs that should uses by the server.
findGrpcServices() - Method in class net.devh.springboot.autoconfigure.grpc.server.AnnotationGrpcServiceDiscoverer
 
findGrpcServices() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDiscoverer
Find the grpc services that should provided by the server.

G

getAddress() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Gets the IP address the created server will be bound to.
getAddress() - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 
getBeanClazz() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDefinition
Gets the class of the grpc service bean.
getBeanName() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDefinition
Gets the name of the grpc service bean.
getDefinition() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDefinition
Gets the grpc service definition.
getMaxInboundMessageSize() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties
Gets the maximum message size in bytes allowed to be received by the server.
getPhase() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
getPort() - Method in interface net.devh.springboot.autoconfigure.grpc.server.GrpcServerFactory
Gets the local port the created server will use to listen to requests.
getPort() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties
Gets the port the server should listen on.
getPort() - Method in class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
 
GlobalServerInterceptorConfigurer - Interface in net.devh.springboot.autoconfigure.grpc.server
This configurer can be used to register new global ServerInterceptors.
GlobalServerInterceptorConfigurerAdapter - Class in net.devh.springboot.autoconfigure.grpc.server
Deprecated.
GlobalServerInterceptorConfigurerAdapter() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorConfigurerAdapter
Deprecated.
 
GlobalServerInterceptorRegistry - Class in net.devh.springboot.autoconfigure.grpc.server
The global server interceptor registry keeps references to all ServerInterceptors that should be registered globally.
GlobalServerInterceptorRegistry() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorRegistry
 
globalServerInterceptorRegistry() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
globalTraceServerInterceptorConfigurerAdapter(GrpcTracing) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration.TraceServerAutoConfiguration
 
GrpcCodec - Annotation Type in net.devh.springboot.autoconfigure.grpc.server.codec
Annotation that marks gRPC codecs that should be registered with a gRPC server.
GrpcCodecDefinition - Class in net.devh.springboot.autoconfigure.grpc.server.codec
Container class that contains all relevant information about a grpc codec.
GrpcCodecDefinition(Codec, boolean, CodecType) - Constructor for class net.devh.springboot.autoconfigure.grpc.server.codec.GrpcCodecDefinition
Creates a new GrpcCodecDefinition.
GrpcGlobalServerInterceptor - Annotation Type in net.devh.springboot.autoconfigure.grpc.server
Annotation for gRPC ServerInterceptors to apply them globally.
GrpcMetedataConsulConfiguration - Class in net.devh.springboot.autoconfigure.grpc.server
Configuration class that configures the required beans for grpc discovery via Consul.
GrpcMetedataConsulConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcMetedataConsulConfiguration
 
GrpcMetedataEurekaConfiguration - Class in net.devh.springboot.autoconfigure.grpc.server
Configuration class that configures the required beans for grpc discovery via Eureka.
GrpcMetedataEurekaConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcMetedataEurekaConfiguration
 
GrpcServerAutoConfiguration - Class in net.devh.springboot.autoconfigure.grpc.server
The auto configuration used by Spring-Boot that contains all beans to run a grpc server/service.
GrpcServerAutoConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
GrpcServerAutoConfiguration.TraceServerAutoConfiguration - Class in net.devh.springboot.autoconfigure.grpc.server
 
GrpcServerFactory - Interface in net.devh.springboot.autoconfigure.grpc.server
A factory that can be used to create grpc servers.
grpcServerLifecycle(GrpcServerFactory) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 
GrpcServerLifecycle - Class in net.devh.springboot.autoconfigure.grpc.server
Lifecycle bean that automatically starts and stops the grpc server.
GrpcServerLifecycle(GrpcServerFactory) - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
GrpcServerProperties - Class in net.devh.springboot.autoconfigure.grpc.server
The properties for the grpc server that will be started as part of the application.
GrpcServerProperties() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties
 
GrpcServerProperties.Security - Class in net.devh.springboot.autoconfigure.grpc.server
 
GrpcService - Annotation Type in net.devh.springboot.autoconfigure.grpc.server
Annotation that marks gRPC services that should be registered with a gRPC server.
GrpcServiceDefinition - Class in net.devh.springboot.autoconfigure.grpc.server
Container class that contains all relevant information about a grpc service.
GrpcServiceDefinition(String, Class<?>, ServerServiceDefinition) - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServiceDefinition
Creates a new GrpcServiceDefinition.
GrpcServiceDiscoverer - Interface in net.devh.springboot.autoconfigure.grpc.server
An interface for a bean that will be used to find grpc services and codecs.
grpcTracing(Tracing) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration.TraceServerAutoConfiguration
 

H

healthStatusManager() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 

I

init() - Method in class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorRegistry
 
init() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcMetedataEurekaConfiguration
 
isAutoStartup() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
isRunning() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 

N

net.devh.springboot.autoconfigure.grpc.server - package net.devh.springboot.autoconfigure.grpc.server
 
net.devh.springboot.autoconfigure.grpc.server.codec - package net.devh.springboot.autoconfigure.grpc.server.codec
 
NettyGrpcServerFactory - Class in net.devh.springboot.autoconfigure.grpc.server
Factory for netty based grpc servers.
NettyGrpcServerFactory(GrpcServerProperties) - Constructor for class net.devh.springboot.autoconfigure.grpc.server.NettyGrpcServerFactory
Creates a new netty server factory with the given properties.
nettyGrpcServiceFactory(GrpcServerProperties, GrpcServiceDiscoverer) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration
 

S

Security() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties.Security
 
setApplicationContext(ApplicationContext) - Method in class net.devh.springboot.autoconfigure.grpc.server.AnnotationGrpcServiceDiscoverer
 
setApplicationContext(ApplicationContext) - Method in class net.devh.springboot.autoconfigure.grpc.server.GlobalServerInterceptorRegistry
 
setCertificatePath(String) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties.Security
Deprecated.
setMaxMessageSize(int) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerProperties
Deprecated.
start() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
stop() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
stop(Runnable) - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
 
stopAndReleaseGrpcServer() - Method in class net.devh.springboot.autoconfigure.grpc.server.GrpcServerLifecycle
Initiates an orderly shutdown of the grpc server and releases the references to the server.

T

TraceServerAutoConfiguration() - Constructor for class net.devh.springboot.autoconfigure.grpc.server.GrpcServerAutoConfiguration.TraceServerAutoConfiguration
 

V

valueOf(String) - Static method in enum net.devh.springboot.autoconfigure.grpc.server.codec.CodecType
Returns the enum constant of this type with the specified name.
values() - Static method in enum net.devh.springboot.autoconfigure.grpc.server.codec.CodecType
Returns an array containing the constants of this enum type, in the order they are declared.
A C D F G H I N S T V 
Skip navigation links