| 145 | } |
| 146 | |
| 147 | SC::Result SC::AsyncRequest::stop(AsyncEventLoop& eventLoop, Function<void(AsyncResult&)>* onClose) |
| 148 | { |
| 149 | return eventLoop.internal.stop(eventLoop, *this, onClose); |
| 150 | } |
| 151 | |
| 152 | bool SC::AsyncRequest::isFree() const { return state == State::Free; } |
| 153 |