Merge branch 'cache-dumper'
[khatus.git] / src / ocaml / lib / khatus_msg.mli
CommitLineData
c6a7396e
SK
1type content =
2 | Alert of {priority : [`low | `med | `hi]; subject : string; body : string}
3 | Data of {key : string list; value : string}
4 | Cache of
5 { mtime : Khatus_time.t
6 ; node : string
7 ; modul : string
8 ; key : string list
9 ; value : string
10 }
11 | Error of string
12 | Log of {location : string; level : [`info | `error]; msg : string}
13 | Status_bar of string
14
15type t =
16 {node : string; modul : string; content : content}
17
18val to_string : t -> string
19
20val next_time : t -> node:string -> time:Khatus_time.t -> Khatus_time.t
This page took 0.021846 seconds and 4 git commands to generate.