;; This permanently change the thread pool used by agents receiving
;; tasks with "send-off". Use this to control thread pools of applications
;; you don't own.
(import '[java.util.concurrent Executors])
(def fj-pool (Executors/newWorkStealingPool 20))
(set-agent-send-off-executor! fj-pool)