Uses of Class
io.vertx.grpc.server.GrpcProtocol
-
Packages that use GrpcProtocol Package Description io.vertx.grpc.server -
-
Uses of GrpcProtocol in io.vertx.grpc.server
Fields in io.vertx.grpc.server with type parameters of type GrpcProtocol Modifier and Type Field Description static Set<GrpcProtocol>
GrpcServerOptions. DEFAULT_ENABLED_PROTOCOLS
The default set of enabled protocols =[HTTP/2, TRANSCODING, WEB, WEB_TEXT]
Methods in io.vertx.grpc.server that return GrpcProtocol Modifier and Type Method Description static GrpcProtocol
GrpcProtocol. valueOf(String name)
Returns the enum constant of this type with the specified name.static GrpcProtocol[]
GrpcProtocol. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.vertx.grpc.server that return types with arguments of type GrpcProtocol Modifier and Type Method Description Set<GrpcProtocol>
GrpcServerOptions. getEnabledProtocols()
Retrieves the set of gRPC protocols that are currently enabled for the server.Methods in io.vertx.grpc.server with parameters of type GrpcProtocol Modifier and Type Method Description GrpcServerOptions
GrpcServerOptions. addEnabledProtocol(GrpcProtocol protocol)
Adds a gRPC protocol to the list of enabled protocols for the server.boolean
GrpcServerOptions. isProtocolEnabled(GrpcProtocol protocol)
Determines if the specified gRPC protocol is enabled in the current server configuration.GrpcServerOptions
GrpcServerOptions. removeEnabledProtocol(GrpcProtocol protocol)
Removes the specified gRPC protocol from the set of enabled protocols.
-