(pipeline-blocking n to xf from)
(pipeline-blocking n to xf from close?)
(pipeline-blocking n to xf from close? ex-handler)
Like pipeline, for blocking operations.
Source
(defn pipeline-blocking
"Like pipeline, for blocking operations."
([n to xf from] (pipeline-blocking n to xf from true))
([n to xf from close?] (pipeline-blocking n to xf from close? nil))
([n to xf from close? ex-handler] (pipeline* n to xf from close? ex-handler :blocking)))