Module P2p_taps_lwt

TAPS with Lwt

High-level library implementing the TAPS protocol using Lwt.

module Message : sig ... end
module Make : functor (Node_id : P2p.S.NODE_ID) -> functor (Node : P2p.S.NODE with type nid := Node_id.t) -> functor (View : P2p.S.VIEW with type nid := Node_id.t and type node := Node.t) -> functor (Taps : P2p.S.GOSSIP with type node := Node.t and type view := View.t) -> functor (Io : S.TAPS_IO with type nid := Node_id.t and type node := Node.t and type view := View.t) -> S.TAPS with type nid := Node_id.t and type node := Node.t and type view := View.t and type io := Io.t

Functor building an implementation of Taps with Lwt given a Node_id, Node, gossip View, Taps implementation, and an Io event handler module.

module S : sig ... end

Signatures