package eio

  1. Overview
  2. Docs
Effect-based direct-style IO API for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

eio-0.15.tbz
sha256=807ecef337dda849b05d3dbd17a928e6f5c636e76eb15e2213667c91127718a7
sha512=8f055aec34c9347eed2cbaa4ee439399bbe3d6a546f2c2b52e27f733fe822f4acdee3e00e4e64ae3eb922c2772535952f8e81b546802fe945fd32d3fab88b7b9

doc/eio.mock/Eio_mock/Clock/index.html

Module Eio_mock.ClockSource

A mock Eio.Time clock for testing timeouts.

Note that Backend.run_full provides mock clocks that advance automatically when there is nothing left to do.

Sourcetype 'time ty = [
  1. | `Mock
  2. | 'time Eio.Time.clock_ty
]
Sourcemodule type S = sig ... end
include S with type time := float
Sourcetype t = float ty Eio.Std.r
Sourceval make : unit -> t

make () is a new clock.

The time is initially set to 0.0 and doesn't change except when you call advance or set_time.

Sourceval advance : t -> unit

advance t sets the time to the next scheduled event (adding any due fibers to the run queue).

Sourceval try_advance : t -> bool

Like advance, but returns false instead of raising an exception.

Sourceval set_time : t -> float -> unit

set_time t time sets the time to time (adding any due fibers to the run queue).

Sourcemodule Mono : S with type time := Mtime.t
OCaml

Innovation. Community. Security.