| 11 | { |
| 12 | public: |
| 13 | Service() |
| 14 | { |
| 15 | client_side_requests.get_observable().subscribe([](const Request& s) { std::cout << "[ClientSideRequest]: " << s.ShortDebugString() << std::endl; }); |
| 16 | } |
| 17 | |
| 18 | grpc::ServerBidiReactor<::Request, ::Response>* Bidirectional(::grpc::CallbackServerContext* /*context*/) override |
| 19 | { |
nothing calls this directly
no test coverage detected