文件名称:ocaml-rpc:轻型库可处理OCaml中的RPC
文件大小:124KB
文件格式:ZIP
更新时间:2024-05-23 15:31:49
OCaml
OCaml-RPC-远程过程调用(RPC)库 ocaml-rpc是一个库,提供使用XML或JSON作为传输编码的远程过程调用(RPC)。 传输机制本身不在此库的范围内,因为所有转换都是从字符串到字符串的。 odoc生成的文档可在。 RPC类型 RPC值定义如下: type t = Int of int64 | Int32 of int32 | Bool of bool | Float of float | String of string | DateTime of string | Enum of t list | Dict of ( string * t ) list | Base64 of string | Null 产生程式码 ocaml-rpc背后的想法是生成类型定义,该类型定义可用于将给定类型的值与RPC表示形式相互转换。 [@@