| 242 | trace_start_(std::chrono::system_clock::now()) {} |
| 243 | |
| 244 | void Trace::set_input(JsonValue input) { |
| 245 | if (ended_.load()) |
| 246 | return; |
| 247 | std::lock_guard<std::mutex> lock(mu_); |
| 248 | input_ = std::move(input); |
| 249 | } |
| 250 | |
| 251 | void Trace::set_output(JsonValue output) { |
| 252 | if (ended_.load()) |
no outgoing calls
no test coverage detected