| 1085 | SC::Result SC::AsyncEventLoop::removeAllAssociationsForFileDescriptorHandle(FileDescriptor::Handle handle) |
| 1086 | { |
| 1087 | return Internal::KernelQueue::removeAllAssociationsForFileDescriptorHandle(handle); |
| 1088 | } |
| 1089 | |
| 1090 | void SC::AsyncEventLoop::updateTime() { return internal.updateTime(); } |
| 1091 | |
| 1092 | SC::TimeMs SC::AsyncEventLoop::getLoopTime() const { return internal.loopTime; } |
| 1093 | |
| 1094 | int SC::AsyncEventLoop::getNumberOfActiveRequests() const { return internal.getTotalNumberOfActiveHandle(); } |
| 1095 | |
| 1096 | int SC::AsyncEventLoop::getNumberOfSubmittedRequests() const { return internal.numberOfSubmissions; } |
| 1097 | |
| 1098 | SC::AsyncLoopTimeout* SC::AsyncEventLoop::findEarliestLoopTimeout() const |
| 1099 | { |
| 1100 | // activeLoopTimeouts are ordered by expiration time |