(defn-proc fname args & body)
Defines function with name fname
, arguments args
. body
is
executed in a newly created process context.
Defines function with name `fname`, arguments `args`. `body` is executed in a newly created process context.
(execute-proc & body)
Executes body
in a newly created process context. Returns channel
which will receive the result.
Executes `body` in a newly created process context. Returns channel which will receive the result.
(execute-proc! & body)
Executes body
in a newly created process context. Parks waiting
for the result.
Executes `body` in a newly created process context. Parks waiting for the result.
(execute-proc!! & body)
The same as execute-proc!
but blocks.
The same as `execute-proc!` but blocks.
cljdoc builds & hosts documentation for Clojure/Script libraries
Ctrl+k | Jump to recent docs |
← | Move to previous article |
→ | Move to next article |
Ctrl+/ | Jump to the search field |