| 926 | AwaitSleepAwaiter AwaitEventLoop::sleep(TimeMs duration) { return AwaitSleepAwaiter(*this, duration); } |
| 927 | |
| 928 | AwaitSocketAcceptAwaiter AwaitEventLoop::accept(const SocketDescriptor& serverSocket, SocketDescriptor& outClient) |
| 929 | { |
| 930 | return AwaitSocketAcceptAwaiter(*this, serverSocket, outClient); |
| 931 | } |
| 932 | |
| 933 | AwaitSocketConnectAwaiter AwaitEventLoop::connect(const SocketDescriptor& socket, SocketIPAddress address) |
| 934 | { |
nothing calls this directly
no test coverage detected