| 77 | explicit KeyValueCarrier(std::vector<TracingServerMiddleware::TraceKey>* items) |
| 78 | : items_(items) {} |
| 79 | otel::nostd::string_view Get(otel::nostd::string_view key) const noexcept override { |
| 80 | return {}; |
| 81 | } |
| 82 | void Set(otel::nostd::string_view key, |
| 83 | otel::nostd::string_view value) noexcept override { |
| 84 | items_->push_back({std::string(key), std::string(value)}); |
no outgoing calls