| 333 | |
| 334 | |
| 335 | Try<Nothing> EventLoop::stop() |
| 336 | { |
| 337 | const BOOL success = |
| 338 | ::PostQueuedCompletionStatus(iocp_handle_.get(), 0, KEY_QUIT, nullptr); |
| 339 | |
| 340 | if (success) { |
| 341 | return Nothing(); |
| 342 | } |
| 343 | |
| 344 | return WindowsError(); |
| 345 | } |
| 346 | |
| 347 | |
| 348 | Try<Nothing> EventLoop::launchTimer( |