Copyright | (c) Simon Marlow 2012 |
---|---|
License | BSD3 (see the file LICENSE) |
Maintainer | Simon Marlow <marlowsd@gmail.com> |
Stability | provisional |
Portability | non-portable (requires concurrency) |
Safe Haskell | Trustworthy |
Language | Haskell2010 |
This module is an internal module. The public API is provided in Control.Concurrent.Async. Breaking changes to this module will not be reflected in a major bump, and using this module may break your code unless you are extremely careful.
Synopsis
- data Async a = Async {
- asyncThreadId :: !ThreadId
- _asyncWait :: STM (Either SomeException a)
- compareAsyncs :: Async a -> Async b -> Ordering
- async :: IO a -> IO (Async a)
- asyncBound :: IO a -> IO (Async a)
- asyncOn :: Int -> IO a -> IO (Async a)
- asyncWithUnmask :: ((forall b. IO b -> IO b) -> IO a) -> IO (Async a)
- asyncOnWithUnmask :: Int -> ((forall b. IO b -> IO b) -> IO a) -> IO (Async a)
- asyncUsing :: (IO () -> IO ThreadId) -> IO a -> IO (Async a)
- withAsync :: IO a -> (Async a -> IO b) -> IO b
- withAsyncBound :: IO a -> (Async a -> IO b) -> IO b
- withAsyncOn :: Int -> IO a -> (Async a -> IO b) -> IO b
- withAsyncWithUnmask :: ((forall c. IO c -> IO c) -> IO a) -> (Async a -> IO b) -> IO b
- withAsyncOnWithUnmask :: Int -> ((forall c. IO c -> IO c) -> IO a) -> (Async a -> IO b) -> IO b
- withAsyncUsing :: (IO () -> IO ThreadId) -> IO a -> (Async a -> IO b) -> IO b
- wait :: Async a -> IO a
- waitCatch :: Async a -> IO (Either SomeException a)
- poll :: Async a -> IO (Maybe (Either SomeException a))
- waitSTM :: Async a -> STM a
- waitCatchSTM :: Async a -> STM (Either SomeException a)
- pollSTM :: Async a -> STM (Maybe (Either SomeException a))
- cancel :: Async a -> IO ()
- cancelMany :: [Async a] -> IO ()
- data AsyncCancelled = AsyncCancelled
- uninterruptibleCancel :: Async a -> IO ()
- cancelWith :: Exception e => Async a -> e -> IO ()
- waitAnyCatch :: [Async a] -> IO (Async a, Either SomeException a)
- waitAnyCatchSTM :: [Async a] -> STM (Async a, Either SomeException a)
- waitAnyCatchCancel :: [Async a] -> IO (Async a, Either SomeException a)
- waitAny :: [Async a] -> IO (Async a, a)
- waitAnySTM :: [Async a] -> STM (Async a, a)
- waitAnyCancel :: [Async a] -> IO (Async a, a)
- waitEitherCatch :: Async a -> Async b -> IO (Either (Either SomeException a) (Either SomeException b))
- waitEitherCatchSTM :: Async a -> Async b -> STM (Either (Either SomeException a) (Either SomeException b))
- waitEitherCatchCancel :: Async a -> Async b -> IO (Either (Either SomeException a) (Either SomeException b))
- waitEither :: Async a -> Async b -> IO (Either a b)
- waitEitherSTM :: Async a -> Async b -> STM (Either a b)
- waitEither_ :: Async a -> Async b -> IO ()
- waitEitherSTM_ :: Async a -> Async b -> STM ()
- waitEitherCancel :: Async a -> Async b -> IO (Either a b)
- waitBoth :: Async a -> Async b -> IO (a, b)
- waitBothSTM :: Async a -> Async b -> STM (a, b)
- data ExceptionInLinkedThread = forall a. ExceptionInLinkedThread (Async a) SomeException
- link :: Async a -> IO ()
- linkOnly :: (SomeException -> Bool) -> Async a -> IO ()
- link2 :: Async a -> Async b -> IO ()
- link2Only :: (SomeException -> Bool) -> Async a -> Async b -> IO ()
- isCancel :: SomeException -> Bool
- race :: IO a -> IO b -> IO (Either a b)
- race_ :: IO a -> IO b -> IO ()
- concurrently :: IO a -> IO b -> IO (a, b)
- concurrentlyE :: IO (Either e a) -> IO (Either e b) -> IO (Either e (a, b))
- concurrently_ :: IO a -> IO b -> IO ()
- concurrently' :: IO a -> IO b -> (IO (Either SomeException (Either a b)) -> IO r) -> IO r
- mapConcurrently :: Traversable t => (a -> IO b) -> t a -> IO (t b)
- forConcurrently :: Traversable t => t a -> (a -> IO b) -> IO (t b)
- mapConcurrently_ :: Foldable f => (a -> IO b) -> f a -> IO ()
- forConcurrently_ :: Foldable f => f a -> (a -> IO b) -> IO ()
- replicateConcurrently :: Int -> IO a -> IO [a]
- replicateConcurrently_ :: Int -> IO a -> IO ()
- newtype Concurrently a = Concurrently {
- runConcurrently :: IO a
- newtype ConcurrentlyE e a = ConcurrentlyE {
- runConcurrentlyE :: IO (Either e a)
- forkRepeat :: IO a -> IO ThreadId
- catchAll :: IO a -> (SomeException -> IO a) -> IO a
- tryAll :: IO a -> IO (Either SomeException a)
- rawForkIO :: IO () -> IO ThreadId
- rawForkOn :: Int -> IO () -> IO ThreadId
Documentation
An asynchronous action spawned by async
or withAsync
.
Asynchronous actions are executed in a separate thread, and
operations are provided for waiting for asynchronous actions to
complete and obtaining their results (see e.g. wait
).
Async | |
|
compareAsyncs :: Async a -> Async b -> Ordering Source #
Compare two Asyncs that may have different types by their ThreadId
.
asyncWithUnmask :: ((forall b. IO b -> IO b) -> IO a) -> IO (Async a) Source #
Like async
but using forkIOWithUnmask
internally. The child
thread is passed a function that can be used to unmask asynchronous
exceptions.
asyncOnWithUnmask :: Int -> ((forall b. IO b -> IO b) -> IO a) -> IO (Async a) Source #
Like asyncOn
but using forkOnWithUnmask
internally. The
child thread is passed a function that can be used to unmask
asynchronous exceptions.
withAsync :: IO a -> (Async a -> IO b) -> IO b Source #
Spawn an asynchronous action in a separate thread, and pass its
Async
handle to the supplied function. When the function returns
or throws an exception, uninterruptibleCancel
is called on the Async
.
withAsync action inner = mask $ \restore -> do a <- async (restore action) restore (inner a) `finally` uninterruptibleCancel a
This is a useful variant of async
that ensures an Async
is
never left running unintentionally.
Note: a reference to the child thread is kept alive until the call
to withAsync
returns, so nesting many withAsync
calls requires
linear memory.
withAsyncWithUnmask :: ((forall c. IO c -> IO c) -> IO a) -> (Async a -> IO b) -> IO b Source #
Like withAsync
but uses forkIOWithUnmask
internally. The
child thread is passed a function that can be used to unmask
asynchronous exceptions.
withAsyncOnWithUnmask :: Int -> ((forall c. IO c -> IO c) -> IO a) -> (Async a -> IO b) -> IO b Source #
Like withAsyncOn
but uses forkOnWithUnmask
internally. The
child thread is passed a function that can be used to unmask
asynchronous exceptions
wait :: Async a -> IO a Source #
Wait for an asynchronous action to complete, and return its
value. If the asynchronous action threw an exception, then the
exception is re-thrown by wait
.
wait = atomically . waitSTM
waitCatch :: Async a -> IO (Either SomeException a) Source #
Wait for an asynchronous action to complete, and return either
Left e
if the action raised an exception e
, or Right a
if it
returned a value a
.
waitCatch = atomically . waitCatchSTM
poll :: Async a -> IO (Maybe (Either SomeException a)) Source #
Check whether an Async
has completed yet. If it has not
completed yet, then the result is Nothing
, otherwise the result
is Just e
where e
is Left x
if the Async
raised an
exception x
, or Right a
if it returned a value a
.
poll = atomically . pollSTM
waitCatchSTM :: Async a -> STM (Either SomeException a) Source #
A version of waitCatch
that can be used inside an STM transaction.
pollSTM :: Async a -> STM (Maybe (Either SomeException a)) Source #
A version of poll
that can be used inside an STM transaction.
cancel :: Async a -> IO () Source #
Cancel an asynchronous action by throwing the AsyncCancelled
exception to it, and waiting for the Async
thread to quit.
Has no effect if the Async
has already completed.
cancel a = throwTo (asyncThreadId a) AsyncCancelled <* waitCatch a
Note that cancel
will not terminate until the thread the Async
refers to has terminated. This means that cancel
will block for
as long said thread blocks when receiving an asynchronous exception.
For example, it could block if:
- It's executing a foreign call, and thus cannot receive the asynchronous exception;
- It's executing some cleanup handler after having received the exception, and the handler is blocking.
cancelMany :: [Async a] -> IO () Source #
Cancel multiple asynchronous actions by throwing the AsyncCancelled
exception to each of them in turn, then waiting for all the Async
threads
to complete.
data AsyncCancelled Source #
The exception thrown by cancel
to terminate a thread.
Instances
Exception AsyncCancelled Source # | |
Defined in Control.Concurrent.Async.Internal | |
Show AsyncCancelled Source # | |
Defined in Control.Concurrent.Async.Internal showsPrec :: Int -> AsyncCancelled -> ShowS # show :: AsyncCancelled -> String # showList :: [AsyncCancelled] -> ShowS # | |
Eq AsyncCancelled Source # | |
Defined in Control.Concurrent.Async.Internal (==) :: AsyncCancelled -> AsyncCancelled -> Bool # (/=) :: AsyncCancelled -> AsyncCancelled -> Bool # |
uninterruptibleCancel :: Async a -> IO () Source #
Cancel an asynchronous action
This is a variant of cancel
, but it is not interruptible.
cancelWith :: Exception e => Async a -> e -> IO () Source #
Cancel an asynchronous action by throwing the supplied exception to it.
cancelWith a x = throwTo (asyncThreadId a) x
The notes about the synchronous nature of cancel
also apply to
cancelWith
.
waitAnyCatch :: [Async a] -> IO (Async a, Either SomeException a) Source #
Wait for any of the supplied asynchronous operations to complete.
The value returned is a pair of the Async
that completed, and the
result that would be returned by wait
on that Async
.
The input list must be non-empty.
If multiple Async
s complete or have completed, then the value
returned corresponds to the first completed Async
in the list.
waitAnyCatchSTM :: [Async a] -> STM (Async a, Either SomeException a) Source #
A version of waitAnyCatch
that can be used inside an STM transaction.
Since: 2.1.0
waitAnyCatchCancel :: [Async a] -> IO (Async a, Either SomeException a) Source #
Like waitAnyCatch
, but also cancels the other asynchronous
operations as soon as one has completed.
waitAnySTM :: [Async a] -> STM (Async a, a) Source #
A version of waitAny
that can be used inside an STM transaction.
Since: 2.1.0
waitAnyCancel :: [Async a] -> IO (Async a, a) Source #
Like waitAny
, but also cancels the other asynchronous
operations as soon as one has completed.
waitEitherCatch :: Async a -> Async b -> IO (Either (Either SomeException a) (Either SomeException b)) Source #
Wait for the first of two Async
s to finish.
waitEitherCatchSTM :: Async a -> Async b -> STM (Either (Either SomeException a) (Either SomeException b)) Source #
A version of waitEitherCatch
that can be used inside an STM transaction.
Since: 2.1.0
waitEitherCatchCancel :: Async a -> Async b -> IO (Either (Either SomeException a) (Either SomeException b)) Source #
Like waitEitherCatch
, but also cancel
s both Async
s before
returning.
waitEither :: Async a -> Async b -> IO (Either a b) Source #
Wait for the first of two Async
s to finish. If the Async
that finished first raised an exception, then the exception is
re-thrown by waitEither
.
waitEitherSTM :: Async a -> Async b -> STM (Either a b) Source #
A version of waitEither
that can be used inside an STM transaction.
Since: 2.1.0
waitEither_ :: Async a -> Async b -> IO () Source #
Like waitEither
, but the result is ignored.
waitEitherSTM_ :: Async a -> Async b -> STM () Source #
A version of waitEither_
that can be used inside an STM transaction.
Since: 2.1.0
waitEitherCancel :: Async a -> Async b -> IO (Either a b) Source #
Like waitEither
, but also cancel
s both Async
s before
returning.
waitBoth :: Async a -> Async b -> IO (a, b) Source #
Waits for both Async
s to finish, but if either of them throws
an exception before they have both finished, then the exception is
re-thrown by waitBoth
.
waitBothSTM :: Async a -> Async b -> STM (a, b) Source #
A version of waitBoth
that can be used inside an STM transaction.
Since: 2.1.0
data ExceptionInLinkedThread Source #
forall a. ExceptionInLinkedThread (Async a) SomeException |
Instances
link :: Async a -> IO () Source #
Link the given Async
to the current thread, such that if the
Async
raises an exception, that exception will be re-thrown in
the current thread, wrapped in ExceptionInLinkedThread
.
link
ignores AsyncCancelled
exceptions thrown in the other thread,
so that it's safe to cancel
a thread you're linked to. If you want
different behaviour, use linkOnly
.
:: (SomeException -> Bool) | return |
-> Async a | |
-> IO () |
Link the given Async
to the current thread, such that if the
Async
raises an exception, that exception will be re-thrown in
the current thread, wrapped in ExceptionInLinkedThread
.
The supplied predicate determines which exceptions in the target thread should be propagated to the source thread.
link2 :: Async a -> Async b -> IO () Source #
Link two Async
s together, such that if either raises an
exception, the same exception is re-thrown in the other Async
,
wrapped in ExceptionInLinkedThread
.
link2
ignores AsyncCancelled
exceptions, so that it's possible
to cancel
either thread without cancelling the other. If you
want different behaviour, use link2Only
.
link2Only :: (SomeException -> Bool) -> Async a -> Async b -> IO () Source #
Link two Async
s together, such that if either raises an
exception, the same exception is re-thrown in the other Async
,
wrapped in ExceptionInLinkedThread
.
The supplied predicate determines which exceptions in the target thread should be propagated to the source thread.
isCancel :: SomeException -> Bool Source #
race :: IO a -> IO b -> IO (Either a b) Source #
Run two IO
actions concurrently, and return the first to
finish. The loser of the race is cancel
led.
race left right = withAsync left $ \a -> withAsync right $ \b -> waitEither a b
concurrently :: IO a -> IO b -> IO (a, b) Source #
Run two IO
actions concurrently, and return both results. If
either action throws an exception at any time, then the other
action is cancel
led, and the exception is re-thrown by
concurrently
.
concurrently left right = withAsync left $ \a -> withAsync right $ \b -> waitBoth a b
concurrentlyE :: IO (Either e a) -> IO (Either e b) -> IO (Either e (a, b)) Source #
Run two IO
actions concurrently. If both of them end with Right
,
return both results. If one of then ends with Left
, interrupt the other
action and return the Left
.
concurrently_ :: IO a -> IO b -> IO () Source #
concurrently
, but ignore the result values
Since: 2.1.1
mapConcurrently :: Traversable t => (a -> IO b) -> t a -> IO (t b) Source #
Maps an IO
-performing function over any Traversable
data
type, performing all the IO
actions concurrently, and returning
the original data structure with the arguments replaced by the
results.
If any of the actions throw an exception, then all other actions are cancelled and the exception is re-thrown.
For example, mapConcurrently
works with lists:
pages <- mapConcurrently getURL ["url1", "url2", "url3"]
Take into account that async
will try to immediately spawn a thread
for each element of the Traversable
, so running this on large
inputs without care may lead to resource exhaustion (of memory,
file descriptors, or other limited resources).
forConcurrently :: Traversable t => t a -> (a -> IO b) -> IO (t b) Source #
forConcurrently
is mapConcurrently
with its arguments flipped
pages <- forConcurrently ["url1", "url2", "url3"] $ \url -> getURL url
Since: 2.1.0
mapConcurrently_ :: Foldable f => (a -> IO b) -> f a -> IO () Source #
mapConcurrently_
is mapConcurrently
with the return value discarded;
a concurrent equivalent of mapM_
.
forConcurrently_ :: Foldable f => f a -> (a -> IO b) -> IO () Source #
forConcurrently_
is forConcurrently
with the return value discarded;
a concurrent equivalent of forM_
.
replicateConcurrently :: Int -> IO a -> IO [a] Source #
Perform the action in the given number of threads.
Since: 2.1.1
replicateConcurrently_ :: Int -> IO a -> IO () Source #
Same as replicateConcurrently
, but ignore the results.
Since: 2.1.1
newtype Concurrently a Source #
A value of type Concurrently a
is an IO
operation that can be
composed with other Concurrently
values, using the Applicative
and Alternative
instances.
Calling runConcurrently
on a value of type Concurrently a
will
execute the IO
operations it contains concurrently, before
delivering the result of type a
.
For example
(page1, page2, page3) <- runConcurrently $ (,,) <$> Concurrently (getURL "url1") <*> Concurrently (getURL "url2") <*> Concurrently (getURL "url3")
Instances
newtype ConcurrentlyE e a Source #
A value of type ConcurrentlyE e a
is an IO
operation that can be
composed with other ConcurrentlyE
values, using the Applicative
instance.
Calling runConcurrentlyE
on a value of type ConcurrentlyE e a
will
execute the IO
operations it contains concurrently, before delivering
either the result of type a
, or an error of type e
if one of the actions
returns Left
.
| @since 2.2.5
ConcurrentlyE | |
|