Mavryk_rpc_http_server.RPC_server
Typed RPC services: server implementation.
include sig ... end
module Media_type : sig ... end
module Directory : sig ... end
val init_server :
?cors:Resto_cohttp.Cors.t ->
?agent:string ->
?acl:Resto_acl.Acl.t ->
media_types:Media_type.t list ->
unit Directory.t ->
server
val init_and_launch :
?host:string ->
?cors:Resto_cohttp.Cors.t ->
?agent:string ->
?acl:Resto_acl.Acl.t ->
media_types:Media_type.t list ->
unit Directory.t ->
Conduit_lwt_unix.server ->
unit Lwt.t
val set_acl : server -> Resto_acl.Acl.t -> unit
val shutdown : server -> unit Lwt.t
module Max_active_rpc_connections : sig ... end
Limits (or not) the number of maximum allowed RPC connections at any given time
val launch :
?host:string ->
server ->
?conn_closed:(Cohttp_lwt_unix.Server.conn -> unit) ->
?callback:callback ->
?max_active_connections:Max_active_rpc_connections.t ->
Conduit_lwt_unix.server ->
unit Lwt.t
launch ?host server ?conn_closed ?callback
?max_active_connections listening_protocol
starts the given resto server
initiating the listening loop using the
module Acl : sig ... end