Liking cljdoc? Tell your friends :D

net.async.util


in-blueclj

(in-blue & s)
source

in-cyanclj

(in-cyan & s)
source

in-greenclj

(in-green & s)
source

in-greyclj

(in-grey & s)
source

in-magentaclj

(in-magenta & s)
source

in-redclj

(in-red & s)
source

parse-endpointclj

(parse-endpoint endpoint)
source

spycljmacro

(spy prefix body)
source

try-put!!clj

(try-put!! chan value)

Put value to chan immediately if possible and return true, else do nothing and return false.

Put `value` to `chan` immediately if possible and return `true`,
else do nothing and return `false`.
sourceraw docstring

wait-refclj

(wait-ref ref)
(wait-ref ref x)
(wait-ref ref pred timeout)

Block current thread until ref value will satisfy pred or timeout ms expires. Return true if exited by satisfying pred, false if exited by timeout. Possible forms: (wait-ref ref) - Wait indefinitely for ref to become not-nil (wait-ref ref timeout) - Wait timeout ms for ref to become not-nil (wait-ref ref pred) - Wait indefinitely for ref to satisfy pred (wait-ref ref pred timeout) - Wait timeout ms for ref to satisfy pred

Block current thread until `ref` value will satisfy `pred` or `timeout` ms expires.
Return `true` if exited by satisfying `pred`, `false` if exited by timeout.
Possible forms:
  (wait-ref ref)              - Wait indefinitely for ref to become not-nil
  (wait-ref ref timeout)      - Wait `timeout` ms for ref to become not-nil
  (wait-ref ref pred)         - Wait indefinitely for ref to satisfy `pred`
  (wait-ref ref pred timeout) - Wait `timeout` ms for ref to satisfy `pred`
sourceraw docstring

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

× close