Lines Matching refs:Arg0

293     template<class Arg0, class... ArgN>
294 auto schedule(Arg0&& a0, ArgN&&... an) const
296 (detail::is_action_function<Arg0>::value ||
297 is_subscription<Arg0>::value) &&
298 !is_schedulable<Arg0>::value>::type;
304 template<class Arg0, class... ArgN>
305 auto schedule(clock_type::time_point when, Arg0&& a0, ArgN&&... an) const
307 (detail::is_action_function<Arg0>::value ||
308 is_subscription<Arg0>::value) &&
309 !is_schedulable<Arg0>::value>::type;
315 template<class Arg0, class... ArgN>
316 …auto schedule_periodically(clock_type::time_point initial, clock_type::duration period, Arg0&& a0,…
318 (detail::is_action_function<Arg0>::value ||
319 is_subscription<Arg0>::value) &&
320 !is_schedulable<Arg0>::value>::type;
800 template<class Arg0, class... ArgN>
801 auto worker::schedule(Arg0&& a0, ArgN&&... an) const in schedule()
803 (detail::is_action_function<Arg0>::value || in schedule()
804 is_subscription<Arg0>::value) && in schedule()
805 !is_schedulable<Arg0>::value>::type { in schedule()
806 auto scbl = make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...); in schedule()
819 template<class Arg0, class... ArgN>
820 auto worker::schedule(clock_type::time_point when, Arg0&& a0, ArgN&&... an) const in schedule()
822 (detail::is_action_function<Arg0>::value || in schedule()
823 is_subscription<Arg0>::value) && in schedule()
824 !is_schedulable<Arg0>::value>::type { in schedule()
825 auto scbl = make_schedulable(*this, std::forward<Arg0>(a0), std::forward<ArgN>(an)...); in schedule()
838 template<class Arg0, class... ArgN>
839 …periodically(clock_type::time_point initial, clock_type::duration period, Arg0&& a0, ArgN&&... an)… in schedule_periodically()
841 (detail::is_action_function<Arg0>::value || in schedule_periodically()
842 is_subscription<Arg0>::value) && in schedule_periodically()
843 !is_schedulable<Arg0>::value>::type { in schedule_periodically()
844 …schedule_periodically_rebind(initial, period, make_schedulable(*this, std::forward<Arg0>(a0), std:… in schedule_periodically()