Created
March 17, 2019 18:41
-
-
Save Akii/eef3b75258c1c721d22260b171075210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chunkChan :: Int -> Int -> TChan a -> IO [a] | |
chunkChan numItems timeoutSeconds chan = do | |
maybeRead <- timeout (timeoutSeconds * 60 * 1000) . atomically $ replicateM numItems (readTChan chan) | |
case maybeRead of | |
Just as -> return as | |
Nothing -> do | |
as <- emptyChannel chan | |
if null as | |
then chunkChan numItems timeoutSeconds chan | |
else return as | |
emptyChannel :: TChan a -> IO [a] | |
emptyChannel = undefined |
A version that does not explode STM transactions:
chunkChan :: Int -> Int -> TChan a -> IO [a]
chunkChan numItems timeoutSeconds chan = do
a <- atomically $ readTChan chan
computeRef <- newIORef [a]
let takeOne = atomically (readTChan chan)
appendOne = takeOne >>= modifyIORef' computeRef . (:)
appendN = replicateM_ (numItems - 1) appendOne
_ <- timeout (timeoutSeconds * 1000000) appendN
reverse <$> readIORef computeRef
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.