Liking cljdoc? Tell your friends :D

otplike.proc-util


defn-proccljmacro

(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.
sourceraw docstring

execute-proccljmacro

(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.
sourceraw docstring

execute-proc!cljmacro

(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.
sourceraw docstring

execute-proc!!cljmacro

(execute-proc!! & body)

The same as execute-proc! but blocks.

The same as `execute-proc!` but blocks.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close