-
-
Notifications
You must be signed in to change notification settings - Fork 33
dlib.async
Timur Gafarov edited this page Jun 25, 2018
·
6 revisions
A cross-platform event loop and asynchronous programming capabilities. This package can be used to implement asynchronous servers. Under the hood the package is based on different multiplexing APIs: Epoll on Linux, IOCP on Windows, and Kqueue on BSD/OSX.
Important: since dlib 0.13.0, dlib.async is no more core part of the project. You can still find it in async branch, but due to the lack of maintainence it's not recommended to use it in production.
- dlib.async.loop - event loop interface
- dlib.async.protocol - common protocol interface
- dlib.async.transport - transport interfaces
- dlib.async.watcher - event watcher
- dlib.async.event - event loop implementations for various platforms and APIs