lwt
Promises, concurrency, and parallelized I/O
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
package lwt
-
lwt_log
-
lwt_simple_top
-
lwt_syntax
-
lwt_syntax_log
-
lwt_syntax_options
-
lwt_unix
-
ppx_lwt
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Library lwt_unix
inherit t
method private virtual poll : (Unix.file_descr * bool * bool) list ->
float ->
(Unix.file_descr * bool * bool) list
poll fds tiomeout
, where fds
is a list of tuples of the form (fd, check_readable, check_writable)
, waits for either:
- one of the file descriptor with
check_readable
set totrue
to become readable - one of the file descriptor with
check_writable
set totrue
to become writable - timeout to expire
and returns the list of file descriptors with their readable and writable status.
ON THIS PAGE
No table of contents