Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
This module contains some functions that let you interact with the underlying child process. There's nothing particularly tricky about them, but most users don't need them.
val kill : t -> Async.Signal.t -> unit
Send a signal to the command-rpc executable.
val wait : t -> Async.Unix.Exit_or_signal.t Async.Deferred.t
Wait for termination of the command-rpc executable and return the exit status. This can be used e.g. after with_close
to collect the missing info, since with_close
does not report it.