menu
IoPollBackend
import { IoPollBackend } from "destack:io/binding";
Readiness backend selector.
1export enum IoPollBackend {2 Auto = 0,3 Epoll = 1,4 Kqueue = 2,5 PosixPoll = 3,6}Variants
Auto = 0Select the best backend for the current host.
Epoll = 1Use the Linux epoll backend.
Kqueue = 2Use the BSD kqueue backend.
PosixPoll = 3Use the POSIX poll backend.