summaryrefslogtreecommitdiff
path: root/Control
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2018-09-07 12:00:29 -0400
committerJoe Crayne <joe@jerkface.net>2018-09-07 13:18:56 -0400
commit6f9144a2ddd447b6cf8d0bbfec3a00dd2ba07c78 (patch)
tree128c376e05ade8a2908822b35bfe6985c0de2c1f /Control
parentb3b228adf6fd71c089f4d3525b2bc3a6257f7f76 (diff)
whitespace.
Diffstat (limited to 'Control')
-rw-r--r--Control/Concurrent/STM/UpdateStream.hs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Control/Concurrent/STM/UpdateStream.hs b/Control/Concurrent/STM/UpdateStream.hs
index b01fc0bc..227ffef4 100644
--- a/Control/Concurrent/STM/UpdateStream.hs
+++ b/Control/Concurrent/STM/UpdateStream.hs
@@ -6,10 +6,10 @@
6-- Maintainer : joe@jerkface.net 6-- Maintainer : joe@jerkface.net
7-- Stability : experimental 7-- Stability : experimental
8-- 8--
9-- An UpdateSream consists of pass-through messages that are queued up and 9-- An UpdateStream consists of pass-through messages that are queued up and
10-- slotted messages which might be obsoleted and discarded if they are not 10-- slotted messages which might be obsoleted and discarded if they are not
11-- consumed before newer slotted messages with the same slot value occur. 11-- consumed before newer slotted messages with the same slot value occur.
12-- 12--
13-- Slots are implemented with "Control.Concurrent.STM.StatusCache" and it is 13-- Slots are implemented with "Control.Concurrent.STM.StatusCache" and it is
14-- recommended that you read that documentation first. 14-- recommended that you read that documentation first.
15-- 15--
@@ -25,7 +25,7 @@
25-- > import Control.Concurrent (forkIO, threadDelay) 25-- > import Control.Concurrent (forkIO, threadDelay)
26-- > import System.IO (hFlush, stdout) 26-- > import System.IO (hFlush, stdout)
27-- > import qualified Control.Concurrent.STM.UpdateStream as Cache 27-- > import qualified Control.Concurrent.STM.UpdateStream as Cache
28-- > 28-- >
29-- > messages :: [(Maybe String, Char)] 29-- > messages :: [(Maybe String, Char)]
30-- > messages = concat 30-- > messages = concat
31-- > [ slot "x" "(set x = 2)" 31-- > [ slot "x" "(set x = 2)"
@@ -40,7 +40,7 @@
40-- > where 40-- > where
41-- > slot v cs = map ((,) (Just v)) cs 41-- > slot v cs = map ((,) (Just v)) cs
42-- > message cs = map ((,) Nothing) cs 42-- > message cs = map ((,) Nothing) cs
43-- > 43-- >
44-- > main = do 44-- > main = do
45-- > q <- atomically $ Cache.new (== '(') (==')') 45-- > q <- atomically $ Cache.new (== '(') (==')')
46-- > let go = mapM_ (atomically . (uncurry $ Cache.push q) 46-- > let go = mapM_ (atomically . (uncurry $ Cache.push q)
@@ -135,7 +135,7 @@ push u (Just n) x = do
135 Status.push scache x 135 Status.push scache x
136 136
137-- | Pull off a chunk from the 'UpdateStream' for processing. 137-- | Pull off a chunk from the 'UpdateStream' for processing.
138-- 138--
139-- If chunks are not pulled off quickly, they may be obsoleted 139-- If chunks are not pulled off quickly, they may be obsoleted
140-- and discarded when new messages are 'push'ed. 140-- and discarded when new messages are 'push'ed.
141pull :: Ord slot => UpdateStream slot x -> STM x 141pull :: Ord slot => UpdateStream slot x -> STM x