| 236 | // --------------------------------------------------------------------------- |
| 237 | |
| 238 | Trace::Trace(Tracer& tracer, std::string id, std::string name) |
| 239 | : tracer_(tracer), |
| 240 | id_(std::move(id)), |
| 241 | name_(std::move(name)), |
| 242 | trace_start_(std::chrono::system_clock::now()) {} |
| 243 | |
| 244 | void Trace::set_input(JsonValue input) { |
| 245 | if (ended_.load()) |
nothing calls this directly
no outgoing calls
no test coverage detected