Library
Module
Module type
Parameter
Class
Class type
Simple event library - No asymc monads, No threads, No exceptions
val cancel : cancellation_handle -> unit
val on_line :
Unix.file_descr ->
(string res -> 'a) ->
'a event * cancellation_handle
System events one can wait for
val on_bytes :
Unix.file_descr ->
int ->
(Stdlib.Bytes.t res -> 'a) ->
'a event * cancellation_handle
val on_death_of :
pid:int ->
(Unix.process_status -> 'a) ->
'a event * cancellation_handle
val on_ocaml_value :
Unix.file_descr ->
('b res -> 'a) ->
'a event * cancellation_handle
val on_httpcle :
Unix.file_descr ->
(Stdlib.Bytes.t res -> 'a) ->
'a event * cancellation_handle
val on_queues :
'b Stdlib.Queue.t ->
'c Stdlib.Queue.t ->
('b -> 'c -> 'a) ->
'a event * cancellation_handle
Synchronization events between components (worker pool and a task queue)
val on_queue :
'b Stdlib.Queue.t ->
('b -> 'a) ->
'a event * cancellation_handle
A way to feed the event queue
val now : 'a -> 'a event
Mix regular computations with blocking event (reified)
for debug printing
a recurrent event is never removed from the todo set, that is, when ready a copy of it is added back automatically
a recurrent event is never removed from the todo set, that is, when ready a copy of it is added back automatically
convenience adaptor to drop the cancellation handle
val uncancellable : ('a event * cancellation_handle) -> 'a event
convenience adaptor to drop the cancellation handle
it is unusual to make a regular computation cancellable, hence the event constructor does not recurn the cancellation handle. Here the way to recover it
val cancellation_handle : 'e event -> cancellation_handle
it is unusual to make a regular computation cancellable, hence the event constructor does not recurn the cancellation handle. Here the way to recover it
lower integers correspond to hight priorities (as in Unix nice)
lower integers correspond to hight priorities (as in Unix nice)
The main loop goes like this
type top_event = | NotForMe of Component.event | Echo of string
let echo : top_event event = on_line Unix.stdin (function | Ok s -> Echo s | Error _ -> Echo "error") |> uncancellable |> make_recurrent
let handle_event = function | NotForMe e -> List.map (map (fun x -> NotForMe x)) (Component.handle_event e) | Echo text -> Printf.eprintf "echo: %s\n" text;
let rec loop evs = let ready, evs = pop evs in let new_evs = handle_event ready in loop (enqueue evs new_evs)
let main () = loop (enqueue empty echo; ...
)
val pp_todo :
(Stdlib.Format.formatter -> 'a -> unit) ->
Stdlib.Format.formatter ->
'a todo ->
unit
val empty : 'a todo
val size : 'a todo -> int
val nothing_left_to_do : 'a todo -> bool
val only_recurring_events : 'a todo -> bool