| 39 | namespace detail |
| 40 | { |
| 41 | class ResumeAfterPauseCont : public Continuation |
| 42 | { |
| 43 | public: |
| 44 | ResumeAfterPauseCont() : Continuation() {} |
| 45 | |
| 46 | ResumeAfterPauseCont(Continuation::Mutex m) : Continuation(m) {} |
| 47 | |
| 48 | protected: |
| 49 | int _run(TSEvent event, void *edata) override; |
| 50 | }; |
| 51 | |
| 52 | } // end namespace detail |
| 53 |