| 131 | void SC::AsyncRequest::queueSubmission(AsyncEventLoop& eventLoop) { eventLoop.internal.queueSubmission(*this); } |
| 132 | |
| 133 | SC::AsyncTaskSequence* SC::AsyncRequest::getTask() |
| 134 | { |
| 135 | if (flags & AsyncEventLoop::Internal::Flag_AsyncTaskSequence) |
| 136 | { |
| 137 | return static_cast<AsyncTaskSequence*>(sequence); |
| 138 | } |
| 139 | return nullptr; |
| 140 | } |
| 141 | |
| 142 | bool SC::AsyncRequest::isThreadPoolForced() const |
| 143 | { |
no outgoing calls
no test coverage detected