| 50 | {} |
| 51 | |
| 52 | virtual void execute(ReactorWrapper& reactor_wrapper) |
| 53 | { |
| 54 | RcHandle<SporadicTask> st = sporadic_task_.lock(); |
| 55 | if (st) { |
| 56 | st->update_schedule(reactor_wrapper); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | const WeakRcHandle<SporadicTask> sporadic_task_; |
| 61 | }; |
nothing calls this directly
no test coverage detected