Skip to content

Commit 894a92a

Browse files
committed
docstring updates
1 parent 4b75c57 commit 894a92a

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

src/main/clojure/clojure/core/async.clj

+21-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,26 @@ to validate go blocks do not invoke core.async blocking operations.
1818
Property is read once, at namespace load time. Recommended for use
1919
primarily during development. Invalid blocking calls will throw in
2020
go block threads - use Thread.setDefaultUncaughtExceptionHandler()
21-
to catch and handle."
21+
to catch and handle.
22+
23+
Set the Java system property `clojure.core.async.executor-factory`
24+
to specify a user-defined ExecutorService factory function as a
25+
string naming a namespace qualified var. The factory function should
26+
take a keyword naming the expected workload profile for the executor
27+
service instance according to the following:
28+
29+
:io - may do blocking I/O but must not do extended computation
30+
:compute - must not ever block
31+
:mixed - anything else
32+
33+
In leiu of returning an object, the factory may return nil to signal
34+
to core.async to construct an instance instead.
35+
36+
A user-defined ExecutorService factory may additionally accept a
37+
tag :core-async-dispatch and return a specialized core.async
38+
dispatch executor service. If returning nil, core.async will
39+
use the :io executor service (which may be handled by the
40+
user factory)."
2241
(:refer-clojure :exclude [reduce transduce into merge map take partition
2342
partition-by bounded-count])
2443
(:require [clojure.core.async.impl.protocols :as impl]
@@ -472,7 +491,7 @@ to catch and handle."
472491
:compute - must not ever block
473492
:mixed - anything else
474493
475-
Calls without a workload are assumed :mixed."
494+
Calls without a workload tag are assumed :mixed."
476495
([f] (thread-call f :mixed))
477496
([f workload]
478497
(let [c (chan 1)

src/main/clojure/clojure/core/async/impl/dispatch.clj

+3-16
Original file line numberDiff line numberDiff line change
@@ -80,22 +80,9 @@
8080

8181
(def executor-for
8282
"Given a workload tag, returns an ExecutorService instance and memoizes the result. By
83-
default, core.async will construct a specialized ExecutorService instance for each tag
84-
according to the following tags and their expected workload profiles:
85-
86-
:io - may do blocking I/O but must not do extended computation
87-
:compute - must not ever block
88-
:mixed - anything else
89-
90-
This function will attempt to lookup a user-defined ExecutorService factory in the
91-
clojure.core.async.executor-factory system property, which should hold a string naming a
92-
namespace qualified var. The factory should accept a tag as listed above and return an
93-
ExecutorService instance for that workload or nil to accept the core.async default.
94-
95-
A user-defined ExecutorService factory may additionally accept a tag :core-async-dispatch
96-
and return a specialized core.async dispatch executor service. If the user factory returns
97-
nil instead then core.async will use the :io executor service (which may be handled by the
98-
user factory)."
83+
default, core.async will defer to a user factory (if provided via sys prop) or construct
84+
a specialized ExecutorService instance for each tag :io, :compute, and :mixed. When
85+
given the tag :core-async-dispatch it will default to the executor service for :io."
9986
(memoize
10087
(fn ^ExecutorService [workload]
10188
(let [sysprop-factory (when-let [esf (System/getProperty "clojure.core.async.executor-factory")]

0 commit comments

Comments
 (0)