| 33 | } |
| 34 | |
| 35 | ::grpc::Status GRPCService::Unregister(::grpc::ServerContext* context, |
| 36 | const UnregisterRequest* arg, |
| 37 | UnregisterResponse* result) { |
| 38 | return DelegateRPC( |
| 39 | [this, arg, result]() { return service_->Unregister(arg, result); }); |
| 40 | } |
| 41 | |
| 42 | ::grpc::Status GRPCService::DeconstructTuple(::grpc::ServerContext* context, |
| 43 | const DeconstructTupleRequest* arg, |
nothing calls this directly
no test coverage detected