Uses of Class
ru.pathcreator.pyc.rpc.core.RpcMethod
Packages that use RpcMethod
-
Uses of RpcMethod in ru.pathcreator.pyc.rpc.core
Methods in ru.pathcreator.pyc.rpc.core that return RpcMethodModifier and TypeMethodDescriptionstatic <Req,Resp> RpcMethod <Req, Resp> RpcMethod.of(int requestMessageTypeId, int responseMessageTypeId, MessageCodec<Req> requestCodec, MessageCodec<Resp> responseCodec) Создаёт typed-описание одного RPC метода. -
Uses of RpcMethod in ru.pathcreator.pyc.rpc.schema
Methods in ru.pathcreator.pyc.rpc.schema that return RpcMethodModifier and TypeMethodDescriptionRpcMethod<?, ?> RpcMethodSchema.method()Возвращает underlying typed RPC method descriptor.Methods in ru.pathcreator.pyc.rpc.schema with parameters of type RpcMethodModifier and TypeMethodDescriptionAdds a method definition when explicit request and response Java type names are not needed.<Req,Resp> RpcServiceRegistry.ChannelBuilder RpcServiceRegistry.ChannelBuilder.method(String methodName, RpcMethod<Req, Resp> method, Class<Req> requestType, Class<Resp> responseType) Adds a typed method definition with explicit request and response type names.<Req,Resp> RpcServiceRegistry.ChannelBuilder RpcServiceRegistry.ChannelBuilder.method(String methodName, RpcMethod<Req, Resp> method, Class<Req> requestType, Class<Resp> responseType, String version, String description) Adds a typed method definition with optional version and description metadata.