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
val run_outside_async : (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.