Async_unixmodule Async_config : sig ... endmodule Clock : sig ... endA Clock based on Core.Time.
module Dump_core_on_job_delay : sig ... endDump core if jobs are delayed, to get additional debug information when running on UNIX systems that support core dumps.
module Fd : sig ... endAn Fd.t is a wrapper around a Unix file descriptor, with additional information about the kind of file descriptor and logic to ensure that we don't use a file descriptor that has been closed, or close a file descriptor that is in use.
module In_thread : sig ... endThe In_thread module has functions for interaction between the Async world and other (kernel) threads. The name is to remind us to think about threads and race conditions.
module Io_stats : sig ... endGives stats about system IO usage.
module Log : sig ... endA library for general logging.
module Print : sig ... endNon-blocking, Async-friendly print functions.
module Process : sig ... endAsync.Process is for creating child processes of the current process, and communicating with children via their stdin, stdout, and stderr. Async.Process is the Async analog of Core.Unix.create_process and related functions.
module Reader : sig ... endReader is Async's main API for buffered input from a file descriptor. It is the analog of Stdio.In_channel.
module Require_explicit_time_source : sig ... endDeprecates functions that use wall-clock time, so that code must be explicit about what time source is used.
module Scheduler : sig ... endDispatches and monitors Async processes.
module Shutdown : sig ... endFor shutting down an Async program.
module Signal : sig ... endSignal handling.
module Socket : sig ... endmodule Sys : sig ... endThis module overrides everything in the Core.Sys module that might block. Functions do the same thing as their counterparts in Core.Sys, but instead return deferreds. For a description of their semantics see the documentation for the Core.Sys module.
module Tcp : sig ... endTcp supports connection to inet sockets and unix sockets.
module Thread_safe : sig ... endThe Thread_safe module has functions that are safe to call from threads outside Async, such as the ones spawned by In_thread.run.
module Writer : sig ... endWriter is Async's main API for output to a file descriptor. It is the analog of Core.Out_channel.
module Unix : sig ... endval after : Core.Time.Span.t -> unit Async_kernel__.Types.Deferred.tval at : Core.Time.t -> unit Async_kernel__.Types.Deferred.tval every :
?start:unit Async_kernel__.Types.Deferred.t ->
?stop:unit Async_kernel__.Types.Deferred.t ->
?continue_on_error:bool ->
Core.Time.Span.t ->
(unit -> unit) ->
unitval with_timeout :
Core.Time.Span.t ->
'a Async_kernel__.Types.Deferred.t ->
[ `Result of 'a | `Timeout ] Async_kernel__.Types.Deferred.tval schedule : ((unit -> unit) -> unit) Scheduler.with_optionsval schedule' :
((unit -> 'a Async_kernel.Deferred.t) ->
'a Async_kernel.Deferred.t)
Scheduler.with_optionsval shutdown : ?force:unit Async_kernel.Deferred.t -> int -> unitval within : ((unit -> unit) -> unit) Scheduler.with_optionsval within' :
((unit -> 'a Async_kernel.Deferred.t) ->
'a Async_kernel.Deferred.t)
Scheduler.with_optionsmodule Printf : sig ... endShadow blocking functions in Core.Printf to prevent their unintentional use.
val exit :
?force:unit Async_kernel.Deferred.t ->
int ->
'a Async_kernel.Deferred.t