| 30 | } |
| 31 | |
| 32 | void Dashboard::addTask(const NodeID& node, int task_id) { |
| 33 | Lock l(mu_); |
| 34 | data_[node].set_task_id(task_id); |
| 35 | } |
| 36 | |
| 37 | void Dashboard::addReport(const NodeID& node, const string& report) { |
| 38 | HeartbeatReport hb; CHECK(hb.ParseFromString(report)); |
nothing calls this directly
no test coverage detected