Uses of Class
io.vertx.reactivex.grpc.common.GrpcMessageEncoder
-
Packages that use GrpcMessageEncoder Package Description io.vertx.reactivex.grpc.common -
-
Uses of GrpcMessageEncoder in io.vertx.reactivex.grpc.common
Fields in io.vertx.reactivex.grpc.common declared as GrpcMessageEncoder Modifier and Type Field Description static GrpcMessageEncoder<Buffer>
GrpcMessageEncoder. IDENTITY
static GrpcMessageEncoder<JsonObject>
GrpcMessageEncoder. JSON_OBJECT
An encoder in JSON format encoding instances.Fields in io.vertx.reactivex.grpc.common with type parameters of type GrpcMessageEncoder Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<GrpcMessageEncoder>
GrpcMessageEncoder. __TYPE_ARG
Methods in io.vertx.reactivex.grpc.common that return GrpcMessageEncoder Modifier and Type Method Description GrpcMessageEncoder<O>
ServiceMethod. encoder()
static <T> GrpcMessageEncoder<T>
GrpcMessageEncoder. json()
Create and reutrn an encoder in JSON format encoding instances of using the protobuf-java-util library otherwise using (Jackson Databind is required).static <T> GrpcMessageEncoder<T>
GrpcMessageEncoder. newInstance(GrpcMessageEncoder arg)
static <T> GrpcMessageEncoder<T>
GrpcMessageEncoder. newInstance(GrpcMessageEncoder arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
Methods in io.vertx.reactivex.grpc.common with parameters of type GrpcMessageEncoder Modifier and Type Method Description static <Req,Resp>
ServiceMethod<Resp,Req>ServiceMethod. client(ServiceName serviceName, String methodName, GrpcMessageEncoder<Req> encoder, GrpcMessageDecoder<Resp> decoder)
static <Req,Resp>
ServiceMethod<Req,Resp>ServiceMethod. server(ServiceName serviceName, String methodName, GrpcMessageEncoder<Resp> encoder, GrpcMessageDecoder<Req> decoder)
-