package redis-lwt

  1. Overview
  2. Docs

Module Redis_lwt.IOSource

Sourcetype 'a t = 'a Lwt.t
Sourcetype in_channel
Sourcetype out_channel
Sourcetype 'a stream = 'a Lwt_stream.t
Sourcetype stream_count
Sourceval getaddrinfo : string -> string -> Unix.getaddrinfo_option list -> Unix.addr_info list t
Sourceval close : fd -> unit t
Sourceval sleep : float -> unit t
Sourceval (>>=) : 'a t -> ('a -> 'b t) -> 'b t
Sourceval (>|=) : 'a t -> ('a -> 'b) -> 'b t
Sourceval catch : (unit -> 'a t) -> (exn -> 'a t) -> 'a t
Sourceval try_bind : (unit -> 'a t) -> ('a -> 'b t) -> (exn -> 'b t) -> 'b t
Sourceval ignore_result : 'a t -> unit
Sourceval return : 'a -> 'a t
Sourceval fail : exn -> 'a t
Sourceval run : 'a t -> 'a
Sourceval atomic : (in_channel -> 'a t) -> in_channel -> 'a t
Sourceval in_channel_of_descr : fd -> in_channel
Sourceval out_channel_of_descr : fd -> out_channel
Sourceval input_char : in_channel -> char t
Sourceval really_input : in_channel -> bytes -> int -> int -> unit t
Sourceval output_string : out_channel -> string -> unit t
Sourceval flush : out_channel -> unit t
Sourceval iter : ('a -> unit t) -> 'a list -> unit t
Sourceval iter_serial : ('a -> unit t) -> 'a list -> unit t
Sourceval map : ('a -> 'b t) -> 'a list -> 'b list t
Sourceval map_serial : ('a -> 'b t) -> 'a list -> 'b list t
Sourceval fold_left : ('a -> 'b -> 'a t) -> 'a -> 'b list -> 'a t
Sourceval stream_from : (stream_count -> 'b option t) -> 'b stream
Sourceval stream_next : 'a stream -> 'a t
Sourcetype mutex
Sourceval mutex_create : unit -> mutex
Sourceval mutex_with : mutex -> (unit -> 'a t) -> 'a t
Sourcetype condition
Sourceval condition_create : unit -> condition
Sourceval condition_wait : condition -> mutex -> unit t
Sourceval condition_signal : condition -> unit
Sourceval condition_broadcast : condition -> unit
OCaml

Innovation. Community. Security.