File tree 2 files changed +33
-24
lines changed
src/jtk_dvlp/async/interop
2 files changed +33
-24
lines changed Original file line number Diff line number Diff line change 1
- (defproject jtk-dvlp /core.async-helpers " 3.0.1"
1
+ (defproject jtk-dvlp /core.async-helpers " 3.0.1-SNAPSHOT "
2
2
:description
3
3
" Helper pack for core.async"
4
4
Original file line number Diff line number Diff line change 22
22
(let [c (async/promise-chan )
23
23
24
24
put-val!
25
- (fn [val ]
26
- (if ( nil? val )
27
- (async/close ! c)
28
- (async/put ! c val) ))
25
+ (fn [v ]
26
+ (when ( some? v )
27
+ (async/put ! c v) )
28
+ (async/close ! c))
29
29
30
30
forward-error!
31
- (fn [err ]
32
- (->> err
31
+ (fn [e ]
32
+ (->> e
33
33
(ex-info " promise error" {:code :promise-error })
34
- (async/put! c)))]
34
+ (async/put! c))
35
+ (async/close! c))]
35
36
36
37
#?(:clj
37
38
(try
60
61
[c]
61
62
(create-promise
62
63
(fn [resolve reject]
63
- (->> (fn [v]
64
- (async/close! c)
65
- (if (jtk-dvlp.async/exception? v)
66
- (reject v)
67
- (resolve v)))
68
- (async/take! c)))))
64
+ (async/take!
65
+ c
66
+ (fn [v]
67
+ (async/close! c)
68
+ (if (jtk-dvlp.async/exception? v)
69
+ (reject v)
70
+ (resolve v)))))))
69
71
70
72
(defn promise-chan
71
73
" Creates an promise like channel, see `core.async/promise-chan`.
78
80
(async/promise-chan ))
79
81
80
82
([f]
81
- (let [c (async/promise-chan )
83
+ (let [p (async/promise-chan )
82
84
83
85
put-resolution!
84
- (partial async/put! c)
86
+ (fn [v]
87
+ (when (some? v)
88
+ (async/put! p v))
89
+ (async/close! p))
85
90
86
91
put-rejection!
87
- #(->> %
88
- (ex-info " promise error" {:code :promise-error })
89
- (async/put! c))]
92
+ (fn [e]
93
+ (->> e
94
+ (ex-info " promise error" {:code :promise-error })
95
+ (async/put! p))
96
+ (async/close! p))]
90
97
91
98
(f put-resolution! put-rejection!)
92
- c )))
99
+ p )))
93
100
94
101
(defn ->promise-chan
95
102
" Ensure given channel `c` to be a `promise-chan`.
98
105
[c]
99
106
(let [p (async/promise-chan )]
100
107
(async/take!
101
- c (fn [v]
102
- (when (some? v)
103
- (async/put! p v))
104
- (async/close! p)))
108
+ c
109
+ (fn [v]
110
+ (async/close! c)
111
+ (when (some? v)
112
+ (async/put! p v))
113
+ (async/close! p)))
105
114
p))
106
115
107
116
#?(:clj
You can’t perform that action at this time.
0 commit comments