Maintainer | Bas van Dijk <v.dijk.bas@gmail.com> , Roel van Dijk <vandijk.roel@gmail.com> |
---|---|
Safe Haskell | Trustworthy |
Standard threads extended with the ability to wait for their return value.
This module exports equivalently named functions from Control.Concurrent
(and GHC.Conc
). Avoid ambiguities by importing this module qualified. May
we suggest:
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
- forkIO :: IO α -> IO (ThreadId, IO (Result α))
- forkOS :: IO α -> IO (ThreadId, IO (Result α))
- forkOn :: Int -> IO α -> IO (ThreadId, IO (Result α))
- forkIOWithUnmask :: ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α))
- forkOnWithUnmask :: Int -> ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α))
- type Result α = Either SomeException α
- result :: Result α -> IO α
Forking threads
forkIO :: IO α -> IO (ThreadId, IO (Result α))Source
Like Control.Concurrent.
but returns
a computation that when executed blocks until the thread terminates
then returns the final value of the thread.
forkIO
forkOS :: IO α -> IO (ThreadId, IO (Result α))Source
Like Control.Concurrent.
but returns
a computation that when executed blocks until the thread terminates
then returns the final value of the thread.
forkOS
forkOn :: Int -> IO α -> IO (ThreadId, IO (Result α))Source
Like Control.Concurrent.
but returns
a computation that when executed blocks until the thread terminates
then returns the final value of the thread.
forkOn
forkIOWithUnmask :: ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α))Source
Like Control.Concurrent.
but returns
a computation that when executed blocks until the thread terminates
then returns the final value of the thread.
forkIOWithUnmask
forkOnWithUnmask :: Int -> ((forall β. IO β -> IO β) -> IO α) -> IO (ThreadId, IO (Result α))Source
Like Control.Concurrent.
but returns
a computation that when executed blocks until the thread terminates
then returns the final value of the thread.
forkOnWithUnmask
Results
type Result α = Either SomeException αSource
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.
result :: Result α -> IO αSource
Retrieve the actual value from the result.
When the result is SomeException
the exception is thrown.