Enum UVRunMode
Description
No description yet.
Values
DEFAULT = UV_RUN_DEFAULT | Mentioned in:
| ||
ONCE = UV_RUN_ONCE | Mentioned in:
| ||
NOWAIT = UV_RUN_NOWAIT | Mentioned in:
|
Source
Lines 47-51 in src/uvw/loop.h.
enum class UVRunMode: std::underlying_type_t<uv_run_mode> {
DEFAULT = UV_RUN_DEFAULT,
ONCE = UV_RUN_ONCE,
NOWAIT = UV_RUN_NOWAIT
};