| 122 | , mLastRunTime((numeric_limits<u32>::max)()) {} |
| 123 | |
| 124 | void set_then(function<void()> on_then) override { |
| 125 | mThenCallback = fl::move(on_then); |
| 126 | mHasThen = true; |
| 127 | } |
| 128 | |
| 129 | void set_catch(function<void(const Error&)> on_catch) override { |
| 130 | mCatchCallback = fl::move(on_catch); |