package rpclib-async

  1. Overview
  2. Docs

Source file rpc_async.ml

1
2
3
4
5
6
7
8
9
module AD = struct
  include Async.Deferred

  let bind x f = Async.Deferred.bind ~f x
  let fail = raise
end

module AsyncIdl = Idl.Make (AD)
include AsyncIdl