| 54 | } |
| 55 | |
| 56 | void work_queue::schedule(duration d, internal::v03::work f) { |
| 57 | // If we have no actual work queue, then can't defer |
| 58 | if (!impl_) return; |
| 59 | return impl_->schedule(d, f); |
| 60 | } |
| 61 | |
| 62 | void work_queue::schedule(duration d, internal::v11::work f) { |
| 63 | // If we have no actual work queue, then can't defer |