Module Luv.Prepare

Pre-I/O callback.

See uv_prepare_t — Prepare handle in libuv.

type t = [ `Prepare ] Handle.t

Binds uv_prepare_t.

Note that values of this type can be passed to functions in Luv.Handle, in addition to the functions in this module. In particular, see Luv.Handle.close.

val init : ?loop:Loop.t -> unit -> (t, Error.t) Stdlib.result

Allocates and initializes a prepare handle.

Binds uv_prepare_init.

The handle should be cleaned up with Luv.Handle.close when no longer needed.

val start : t -> (unit -> unit) -> (unit, Error.t) Stdlib.result

Starts the handle with the given callback.

Binds uv_prepare_start.

val stop : t -> (unit, Error.t) Stdlib.result

Stops the handle.

Binds uv_prepare_stop.