Implement a basic cache dumper
[khatus.git] / src / ocaml / lib / khatus_cache.mli
CommitLineData
c6a7396e
SK
1type t
2
3val create : unit -> t
4
5val update
6 : t
7 -> node : string
8 -> modul : string
9 -> key : (string list)
10 -> value : string
11 -> time : Khatus_time.t
12 -> unit
13
14val update_if_data : t -> msg:Khatus_msg.t -> time:Khatus_time.t -> unit
15
16val dump : t -> node:string -> modul:string -> oc:out_channel -> unit
This page took 0.027108 seconds and 4 git commands to generate.