@@ -20,24 +20,31 @@ primarily during development. Invalid blocking calls will throw in
20
20
go block threads - use Thread.setDefaultUncaughtExceptionHandler()
21
21
to catch and handle.
22
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 lieu 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 factory may additionally accept a tag
37
- :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)."
23
+ Use the Java system property `clojure.core.async.executor-factory`
24
+ to specify a function that will provide ExecutorServices for
25
+ application-wide use by core.async in lieu of its defaults. The
26
+ property value should name a fully qualified var. The function
27
+ will be passed a keyword indicating the context of use of the
28
+ executor, and should return either an ExecutorService, or nil to
29
+ use the default. Results per keyword will be cached and used for
30
+ the remainder of the application. Possible context arguments are:
31
+
32
+ :io - used in async/io-thread, for :io workloads in flow/process,
33
+ and for dispatch handling if no explicit dispatch handler is
34
+ provided (see below)
35
+
36
+ :mixed - used by async/thread and for :mixed workloads in
37
+ flow/process
38
+
39
+ ompute - used for :compute workloads in flow/process
40
+
41
+ :core-async-dispatch - used for completion fn handling (e.g. in put!
42
+ and take!, as well as go block IOC thunk processing) throughout
43
+ core.async. If not supplied the ExecutorService for :io will be
44
+ used instead.
45
+
46
+ The set of contexts may grow in the future so the function should
47
+ return nil for unexpected contexts."
41
48
(:refer-clojure :exclude [reduce transduce into merge map take partition
42
49
partition-by bounded-count])
43
50
(:require [clojure.core.async.impl.protocols :as impl]
0 commit comments