-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | run IOs in a single thread -- -- run IOs in a single thread @package iothread @version 0.1.0.0 module Control.Concurrent.IOThread data IOThread -- | Get IOThread and start running worker thread. new :: IO IOThread -- | Deligate your action to worker thread. add :: IOThread -> IO () -> IO ()