package ecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val block_on_async : Core_kernel.Source_code_position.t -> ?context:Async.Sexp.t Core_kernel.Lazy.t -> (unit -> 'a Async.Deferred.t) -> 'a

block_on_async here f calls f (), and runs Async cycles until the result is determined, then returns the result.

This function cannot be called:

  • during an Async job
  • inside another call to block_on_async

An exception will be raised if these conditions are violated.

val run_outside_async : Core_kernel.Source_code_position.t -> ?allowed_in_background:bool -> (unit -> 'a) -> 'a Async.Deferred.t

run_outside_async f schedules f to run at some point in the future, outside of Async, i.e. not during an Async cycle and without holding the Async lock. run_outside_async returns a deferred that is filled with the result of f. Use run_outside_async to wrap blocking Elisp functions, e.g. read-from-minibuffer. For such functions, Emacs, while waiting, will run timers and network handlers, and hence will run Async cycles. Because run_outside_async runs f outside of a Async, Emacs will be able to run cycles as needed. Also, because run_outside_async releases the Async lock, the Async scheduler thread will be able to run and request cycles.