| 71 | }; |
| 72 | |
| 73 | auto response_processor(example::v1::Response& response) |
| 74 | { |
| 75 | return [&](bool ok) |
| 76 | { |
| 77 | if (ok) |
| 78 | { |
| 79 | std::cout << "Server streaming: " << response.integer() << '\n'; |
| 80 | } |
| 81 | }; |
| 82 | } |
| 83 | |
| 84 | auto handle_server_streaming_request(bool ok, ServerStreamingClientRPC& rpc) |
| 85 | { |
no outgoing calls
no test coverage detected