package async_rpc_kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t =
  1. | Stop of 'a
  2. | Continue
  3. | Wait of unit Async_kernel.Deferred.t

Result of an on_message callback. We split the Continue and Wait _ cases to make it clear that Continue is the expected case. The implementation should be optimized for this case.