Uses of Class
io.grpc.ServerBuilder
-
Packages that use ServerBuilder Package Description io.grpc The gRPC core public API.io.grpc.inprocess The in-process transport which is for when a server is in the same process as the client.io.grpc.internal Interfaces and implementations that are internal to gRPC.io.grpc.netty The main transport implementation based on Netty, for both the client and the server.io.grpc.servlet API that implements gRPC server as a servlet.io.grpc.servlet.jakarta API that implements gRPC server as a servlet. -
-
Uses of ServerBuilder in io.grpc
Classes in io.grpc with type parameters of type ServerBuilder Modifier and Type Class Description classForwardingServerBuilder<T extends ServerBuilder<T>>AServerBuilderthat delegates all its builder methods to another builder by default.classServerBuilder<T extends ServerBuilder<T>>A builder forServerinstances.Subclasses of ServerBuilder in io.grpc Modifier and Type Class Description classForwardingServerBuilder<T extends ServerBuilder<T>>AServerBuilderthat delegates all its builder methods to another builder by default.Fields in io.grpc declared as ServerBuilder Modifier and Type Field Description private ServerBuilder<?>ServerProvider.NewServerBuilderResult. serverBuilderMethods in io.grpc that return ServerBuilder Modifier and Type Method Description static ServerBuilder<?>InternalServerProvider. builderForPort(ServerProvider provider, int port)protected abstract ServerBuilder<?>ServerProvider. builderForPort(int port)Creates a new builder with the given port.protected abstract ServerBuilder<?>ForwardingServerBuilder. delegate()Returns the delegatedServerBuilder.static ServerBuilder<?>ForwardingServerBuilder. forPort(int port)This method serves to force sub classes to "hide" this static factory.static ServerBuilder<?>ServerBuilder. forPort(int port)Static factory for creating a new ServerBuilder.ServerBuilder<?>ServerProvider.NewServerBuilderResult. getServerBuilder()static ServerBuilder<?>Grpc. newServerBuilderForPort(int port, ServerCredentials creds)Static factory for creating a new ServerBuilder.(package private) ServerBuilder<?>ServerRegistry. newServerBuilderForPort(int port, ServerCredentials creds)Methods in io.grpc with parameters of type ServerBuilder Modifier and Type Method Description default voidConfigurator. configureServerBuilder(ServerBuilder<?> serverBuilder)Allows implementations to modify the server builder.static voidInternalConfiguratorRegistry. configureServerBuilder(ServerBuilder<?> serverBuilder)static ServerProvider.NewServerBuilderResultServerProvider.NewServerBuilderResult. serverBuilder(ServerBuilder<?> builder)Constructors in io.grpc with parameters of type ServerBuilder Constructor Description NewServerBuilderResult(ServerBuilder<?> serverBuilder, java.lang.String error) -
Uses of ServerBuilder in io.grpc.inprocess
Subclasses of ServerBuilder in io.grpc.inprocess Modifier and Type Class Description classInProcessServerBuilderBuilder for a server that services in-process requests.Methods in io.grpc.inprocess that return ServerBuilder Modifier and Type Method Description protected ServerBuilder<?>InProcessServerBuilder. delegate() -
Uses of ServerBuilder in io.grpc.internal
Subclasses of ServerBuilder in io.grpc.internal Modifier and Type Class Description classServerImplBuilderDefault builder forServerinstances, for usage in Transport implementations.Methods in io.grpc.internal that return ServerBuilder Modifier and Type Method Description static ServerBuilder<?>ServerImplBuilder. forPort(int port) -
Uses of ServerBuilder in io.grpc.netty
Subclasses of ServerBuilder in io.grpc.netty Modifier and Type Class Description classNettyServerBuilderA builder to help simplify the construction of a Netty-based GRPC server.Methods in io.grpc.netty that return ServerBuilder Modifier and Type Method Description protected ServerBuilder<?>NettyServerBuilder. delegate() -
Uses of ServerBuilder in io.grpc.servlet
Subclasses of ServerBuilder in io.grpc.servlet Modifier and Type Class Description classServletServerBuilderBuilder to build a gRPC server that can run as a servlet.Methods in io.grpc.servlet that return ServerBuilder Modifier and Type Method Description protected ServerBuilder<?>ServletServerBuilder. delegate() -
Uses of ServerBuilder in io.grpc.servlet.jakarta
Subclasses of ServerBuilder in io.grpc.servlet.jakarta Modifier and Type Class Description classServletServerBuilderBuilder to build a gRPC server that can run as a servlet.Methods in io.grpc.servlet.jakarta that return ServerBuilder Modifier and Type Method Description protected ServerBuilder<?>ServletServerBuilder. delegate()
-