Пример #1
0
inline behavior operator,(const match_expr<Lhs...>& lhs,
                          const timeout_definition<F>& rhs) {
    return match_expr_convert(lhs, rhs);
}
Пример #2
0
 continue_helper then(const match_expr<Cs...>& arg, const Ts&... args) {
     check_consistency();
     self->become_waiting_for(match_expr_convert(arg, args...), m_mid);
     return {m_mid};
 }
Пример #3
0
 void await(const match_expr<Cs...>& arg, const Ts&... args) {
     check_consistency();
     self->dequeue_response(match_expr_convert(arg, args...), m_mid);
 }
Пример #4
0
 inline void become(match_expr<Cases...> arg0, Args&&... args) {
     become(discard_behavior, match_expr_convert(std::move(arg0), std::forward<Args>(args)...));
 }