Capnp_rpc_unixHelpers for using Capnp_rpc on traditional operating systems.
include Capnp_rpc_net.VAT_NETWORK with module Network = Networkmodule Network : sig ... endA network using TCP and Unix-domain sockets.
module CapTP : sig ... endSharing capabilities over a network link.
module Vat : sig ... endA Vat is an actor in the CapTP network, composed of objects that can call each other directly.
module Vat_config : sig ... endConfiguration for a Vat.
module File_store : sig ... endAn on-disk store for saved services.
module Cap_file : sig ... endUtilities for capability files.
A cmdliner argument converter for a "capnp://" URI (or the path of a file containing such a URI).
val connect_with_progress :
?mode:[ `Auto | `Log | `Batch | `Console | `Silent ] ->
'a Capnp_rpc.Std.Sturdy_ref.t ->
('a Capnp_rpc.Std.Capability.t, Capnp_rpc.Exception.t) Stdlib.resultconnect_with_progress sr is like Sturdy_ref.connect, but shows that a connection is in progress. Note: On failure, it does not display the error, which should instead be handled by the caller.
val with_cap_exn :
?progress:[ `Auto | `Log | `Batch | `Console | `Silent ] ->
'a Capnp_rpc.Std.Sturdy_ref.t ->
('a Capnp_rpc.Std.Capability.t -> 'b) ->
'bLike Sturdy_ref.with_cap_exn, but using connect_with_progress to show progress.
val serve :
?tags:Logs.Tag.set ->
?restore:Capnp_rpc_net.Restorer.t ->
sw:Eio.Switch.t ->
Vat_config.t ->
Vat.tserve ~restore ~sw vat_config is a new vat that is listening for new connections as specified by vat_config. After connecting to it, clients can get access to services using restore.
val client_only_vat :
?tags:Logs.Tag.set ->
?restore:Capnp_rpc_net.Restorer.t ->
sw:Eio.Switch.t ->
_ Eio.Net.t ->
Vat.tclient_only_vat net is a new vat that does not listen for incoming connections.