File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 19
19
:plugins [[lein-codox " 0.10.7" ]]
20
20
:codox {:source-uri " https://github.com/clj-commons/manifold/blob/master/{filepath}#L{line}"
21
21
:metadata {:doc/format :markdown }
22
- :namespaces [manifold.deferred manifold.stream manifold.time manifold.bus manifold.executor]}
22
+ :namespaces [manifold.deferred manifold.stream manifold.time manifold.bus manifold.executor manifold.go-off ]}
23
23
:global-vars {*warn-on-reflection* true }
24
24
:jvm-opts ^:replace [" -server"
25
25
" -XX:-OmitStackTraceInFastThrow"
Original file line number Diff line number Diff line change 9
9
[manifold.stream :as s])
10
10
(:import (manifold.stream.core IEventSource)))
11
11
12
- (defn return-deferred [state value]
12
+ (defn ^:no-doc return-deferred [state value]
13
13
(let [d (ioc/aget-object state ioc/USER-START-IDX)]
14
14
(d/success! d value)
15
15
d))
36
36
(throw r#)
37
37
r#)))
38
38
39
- (defn run-state-machine-wrapped [state]
39
+ (defn ^:no-doc run-state-machine-wrapped [state]
40
40
(try (ioc/run-state-machine state)
41
41
(catch Throwable ex
42
42
(d/error! (ioc/aget-object state ioc/USER-START-IDX) ex)
67
67
(d/catch handler))
68
68
nil ))))))
69
69
70
- (def async-custom-terminators
70
+ (def ^:no-doc async-custom-terminators
71
71
{'manifold.go-off/<! `manifold.go-off/take!
72
72
:Return `return-deferred})
73
73
You can’t perform that action at this time.
0 commit comments