Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val info : ('a, unit, string, unit) Pervasives.format4 -> 'a
val error : ('a, unit, string, unit) Pervasives.format4 -> 'a
and t = {
address : Xs_protocol.address;
interface : (module Namespace.IO) option;
domid : int;
domstr : string;
idx : int;
transactions : (int32, Transaction.t) Hashtbl.t;
mutable next_tid : int32;
watches : (Store.Name.t, watch list) Hashtbl.t;
mutable nb_watches : int;
mutable nb_dropped_watches : int;
mutable stat_nb_ops : int;
mutable perm : Perms.t;
watch_events : (string * string) Queue.t;
cvar : unit Lwt_condition.t;
domainpath : Store.Path.t;
}
val by_address : (Xs_protocol.address, t) Hashtbl.t
val watches : (string, watch list) Trie.t Pervasives.ref
val watch_create : con:t -> name:Store.Name.t -> token:string -> watch
val number_of_transactions : t -> int
val anon_id_next : int Pervasives.ref
val destroy : Xs_protocol.address -> unit
val counter : int Pervasives.ref
val create : Xs_protocol.address -> (module Namespace.IO) option -> t
val restrict : t -> int -> unit
val get_watches : t -> Store.Name.t -> watch list
val add_watch : t -> Store.Name.t -> string -> watch
val del_watch : t -> Store.Name.t -> string -> unit
val fire_one : Store.Name.t option -> watch -> unit
val fire : (Xs_protocol.Op.t * Store.Name.t) -> unit
val find_next_tid : t -> int32
val unregister_transaction : t -> int32 -> unit
val get_transaction : t -> int32 -> Transaction.t
val mark_symbols : t -> unit
val stats : t -> int * int
val debug : t -> string
module Interface : sig ... end