(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 is a website building & hosting documentation for Clojure/Script libraries
× close