class MethodHandler

Defined at line 40 of file ../../third_party/grpc-migrating/src/include/grpcpp/impl/rpc_service_method.h

Base class for running an RPC handler.

Public Methods

void * Deserialize (grpc_call * , grpc_byte_buffer * req, Status * , void ** )

Returns a pointer to the deserialized request.

reflects the

result of deserialization. This pointer and the status should be filled in

a HandlerParameter and passed to RunHandler. It is illegal to access the

pointer after calling RunHandler. Ownership of the deserialized request is

retained by the handler. Returns nullptr if deserialization failed.

Defined at line 78 of file ../../third_party/grpc-migrating/src/include/grpcpp/impl/rpc_service_method.h

void RunHandler (const HandlerParameter & param)
void ~MethodHandler ()

Defined at line 42 of file ../../third_party/grpc-migrating/src/include/grpcpp/impl/rpc_service_method.h

Records