| 90 | } |
| 91 | |
| 92 | pub(crate) struct DelayExecutor { |
| 93 | timer: slint::Timer, |
| 94 | pub(crate) executor: Executor, |
| 95 | command: Arc<RwLock<VecDeque<Command>>>, |
| 96 | } |
| 97 | |
| 98 | impl DelayExecutor { |
| 99 | pub(crate) fn new(executor: Executor) -> (Self, DelayTX) { |
nothing calls this directly
no outgoing calls
no test coverage detected