| 30 | } |
| 31 | |
| 32 | inline void PyExecutorRefExecuteAtWrapper( |
| 33 | aimrt::executor::ExecutorRef& executor, |
| 34 | std::chrono::system_clock::time_point tp, |
| 35 | std::function<void()>&& task) { |
| 36 | executor.ExecuteAt(tp, std::move(task)); |
| 37 | } |
| 38 | |
| 39 | inline void PyExecutorRefExecuteAfterWrapper( |
| 40 | aimrt::executor::ExecutorRef& executor, |