-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Fork threads and wait for their result -- -- This package provides functions to fork threads and wait for their -- result, whether it's an exception or a normal value. -- -- Besides waiting for the termination of a single thread this packages -- also provides functions to wait for a group of threads to terminate. -- -- This package is similar to the threadmanager, async -- and spawn packages. The advantages of this package are: -- --
-- import qualified Control.Concurrent.Thread as Thread ( ... ) ---- -- The following is an example how to use this module: -- --
-- import qualified Control.Concurrent.Thread as Thread ( forkIO, result ) -- -- main = do (tid, wait) <- Thread.forkIO $ do x <- someExpensiveComputation -- return x -- doSomethingElse -- x <- Thread.result =<< wait -- doSomethingWithResult x --module Control.Concurrent.Thread -- | Like Control.Concurrent.forkIO but returns a -- computation that when executed blocks until the thread terminates then -- returns the final value of the thread. forkIO :: IO α -> IO (ThreadId, IO (Result α)) -- | Like Control.Concurrent.forkOS but returns a -- computation that when executed blocks until the thread terminates then -- returns the final value of the thread. forkOS :: IO α -> IO (ThreadId, IO (Result α)) -- | Like Control.Concurrent.forkOn but returns a -- computation that when executed blocks until the thread terminates then -- returns the final value of the thread. forkOn :: Int -> IO α -> IO (ThreadId, IO (Result α)) -- | Like Control.Concurrent.forkIOWithUnmask but returns a -- computation that when executed blocks until the thread terminates then -- returns the final value of the thread. forkIOWithUnmask :: ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α)) -- | Like Control.Concurrent.forkOnWithUnmask but returns a -- computation that when executed blocks until the thread terminates then -- returns the final value of the thread. forkOnWithUnmask :: Int -> ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α)) -- | A result of a thread is either some exception that was thrown in the -- thread and wasn't catched or the actual value that was returned by the -- thread. type Result α = Either SomeException α -- | Retrieve the actual value from the result. -- -- When the result is SomeException the exception is thrown. result :: Result α -> IO α -- | This module extends Control.Concurrent.Thread with the -- ability to wait for a group of threads to terminate. -- -- This module exports equivalently named functions from -- Control.Concurrent, (GHC.Conc), and -- Control.Concurrent.Thread. Avoid ambiguities by importing -- this module qualified. May we suggest: -- --
-- import Control.Concurrent.Thread.Group ( ThreadGroup ) -- import qualified Control.Concurrent.Thread.Group as ThreadGroup ( ... ) --module Control.Concurrent.Thread.Group -- | A ThreadGroup can be understood as a counter which counts the -- number of threads that were added to the group minus the ones that -- have terminated. -- -- More formally a ThreadGroup has the following semantics: -- --