| 154 | bool SC::AsyncRequest::isCancelling() const { return state == State::Cancelling; } |
| 155 | |
| 156 | bool SC::AsyncRequest::isActive() const { return state == State::Active or state == State::Reactivate; } |
| 157 | |
| 158 | SC::Result SC::AsyncRequest::start(AsyncEventLoop& eventLoop) { return eventLoop.start(*this); } |
| 159 |