@@ -18,7 +18,26 @@ to validate go blocks do not invoke core.async blocking operations.
18
18
Property is read once, at namespace load time. Recommended for use
19
19
primarily during development. Invalid blocking calls will throw in
20
20
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)."
22
41
(:refer-clojure :exclude [reduce transduce into merge map take partition
23
42
partition-by bounded-count])
24
43
(:require [clojure.core.async.impl.protocols :as impl]
@@ -472,7 +491,7 @@ to catch and handle."
472
491
:compute - must not ever block
473
492
:mixed - anything else
474
493
475
- Calls without a workload are assumed :mixed."
494
+ Calls without a workload tag are assumed :mixed."
476
495
([f] (thread-call f :mixed ))
477
496
([f workload]
478
497
(let [c (chan 1 )
0 commit comments