Skip to content

Commit dc5a6b4

Browse files
committed
executor-for as fn
1 parent f9c0841 commit dc5a6b4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

+5-4
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@
8585
(or (sysprop-ctor workload) (default-construct-executor workload))
8686
(default-construct-executor workload)))
8787

88-
(def executor-for
89-
{:compute (construct-executor :compute)
90-
:io (construct-executor :io)
91-
:mixed (construct-executor :mixed)})
88+
(defn executor-for [workload]
89+
(case workload
90+
:compute (construct-executor :compute)
91+
:io (construct-executor :io)
92+
:mixed (construct-executor :mixed)))
9293

9394
(defn exec
9495
[^Runnable r workload]

0 commit comments

Comments
 (0)