-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchannel-snippets.clj
72 lines (58 loc) · 1.52 KB
/
channel-snippets.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
(def ch1 (chan 3))
(defn feed-ch1 [ms]
(loop [n 1]
(let [v (keyword (str "a" n))]
(>!! ch1 v)
(Thread/sleep ms))
(if (< n 23)
(recur (inc n))
(>!! ch1 :done))))
(defn eat-ch1 [& args]
(let [v (<!! ch1)]
(if (= v :done)
:done
(println (str v " has " (count (str v)) " characters")))))
(def test-ch1-fut (future (feed-ch1 2000)))
(def eat-fut
(future (loop [v (eat-ch1)]
(if (= v :done)
:finished
(recur (eat-ch1))))))
(def cmdch (chan 3))
(defn eat-ch1-with-cmd [& args]
(let [[v channel] (alts!! [cmdch ch1] :priority true)]
(if (= channel cmdch)
(if (= v :stop)
(println "Stopping - feeder may not be done!")
(println "Execute command " v))
(if (= v :done)
:done
(println (str v " has " (count (str v)) " characters"))))))
(def eat-fut
(future (loop [v (eat-ch1-with-cmd)]
(if (= v :done)
:finished
(recur (eat-ch1-with-cmd))))))
(def test-ch1-fut (future (feed-ch1 2000)))
(>!! cmdch :hi)
(defn feed-ch1-fns
[fs ms]
(loop [n 1
fs fs]
(>!! ch1 (first fs))
(Thread/sleep ms)
(if (< n 11)
(recur (inc n)
(rotate fs))
(>!! ch1 :done))))
(defn apply-ch1-fs
[m]
(loop [f (<!! ch1)
res m]
(if (= f :done)
res
(let [v (f res)]
(println v)
(recur (<!! ch1), v)))))
(def test-ch1-fut (future (feed-ch1-fns [g h f] 1000)))
(def eat-fut (future (apply-ch1-fs testmap)))