menu

IoPollBackend

import { IoPollBackend } from "destack:io/binding";

Readiness backend selector.

language/library/src/io/binding/poll.ds:8:17
1export enum IoPollBackend {2    Auto = 0,3    Epoll = 1,4    Kqueue = 2,5    PosixPoll = 3,6}

Variants

Auto = 0

Select the best backend for the current host.

Epoll = 1

Use the Linux epoll backend.

Kqueue = 2

Use the BSD kqueue backend.

PosixPoll = 3

Use the POSIX poll backend.