ligo/lib_node_net/RPC_server.mli

40 lines
1.2 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(** Typed RPC services: server implementation. *)
type cors = {
allowed_headers : string list ;
allowed_origins : string list ;
}
type media_type = {
name: string ;
construct: 'a. 'a Data_encoding.t -> 'a -> string ;
destruct: 'a. 'a Data_encoding.t -> string -> ('a, string) result ;
}
val json : media_type
val octet_stream : media_type
2016-12-06 16:58:21 +04:00
(** A handle on the server worker. *)
type server
(** Promise a running RPC server.*)
2016-12-13 04:52:55 +04:00
val launch :
?host:string ->
?cors:cors ->
media_types:media_type list ->
2016-12-13 04:52:55 +04:00
Conduit_lwt_unix.server ->
unit RPC.Directory.t ->
2016-12-06 16:58:21 +04:00
server Lwt.t
2016-12-14 19:40:42 +04:00
(** Kill an RPC server. *)
val shutdown : server -> unit Lwt.t