Capnp_rpc_net.Restorer
module Id : sig ... end
Internally, this is just ('a Capability.t, Capnp_rpc.Exception.t) result
but the types work out better having it abstract.
val grant : 'a Capnp_rpc_lwt.Capability.t -> resolution
grant x
is Ok x
.
val reject : Capnp_rpc.Exception.t -> resolution
reject x
is Error x
.
val unknown_service_id : resolution
unknown_service_id
is a standard rejection message.
val none : t
none
is a restorer that rejects everything.
val single : Id.t -> 'a Capnp_rpc_lwt.Capability.t -> t
single id cap
is a restorer that responds to id
with cap
and rejects everything else.
module type LOADER = sig ... end
module Table : sig ... end
val restore :
t ->
Id.t ->
('a Capnp_rpc_lwt.Capability.t, Capnp_rpc.Exception.t) Stdlib.result Lwt.t
restore t id
restores id
using t
. You don't normally need to call this directly, as the Vat will do it automatically.