| 69 | } |
| 70 | |
| 71 | std::chrono::system_clock::time_point Now() const { |
| 72 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
| 73 | return common::util::GetTimePointFromTimestampNs(base_ptr_->now(base_ptr_->impl)); |
| 74 | } |
| 75 | |
| 76 | void ExecuteAt(std::chrono::system_clock::time_point tp, Task&& task) { |
| 77 | AIMRT_ASSERT(base_ptr_, "Reference is null."); |
no test coverage detected