Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
atacama.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
module Logger = Logger module Telemetry = Telemetry_ module Socket = Socket module Handler = Handler module Transport = Transport open Riot let start_link ~port ?(acceptor_count = 100) ?(transport_module = (module Transport.Tcp : Transport.Intf)) handler_module initial_ctx = let child_specs = [ Acceptor_pool.Sup.child_spec ~port ~acceptor_count ~transport_module ~handler_module initial_ctx; ] in Supervisor.start_link ~child_specs ()