Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Use All_sinks.register
to add a new inactive sink, then All_sinks.activate
to make it handle events.
val register : 'a sink_definition -> unit
Register a new sink (e.g. let () = Internal_event.All_sinks.register (module Sink_implementation)
) for it to be available (but inactive) in the framework.
val activate : Uri.t -> unit Tezos_error_monad.Error_monad.tzresult Lwt.t
Make a registered sink active: the function finds it by URI scheme and calls configure
.
val close : unit -> unit Tezos_error_monad.Error_monad.tzresult Lwt.t
Call close
on all the sinks.