./devel/hs-async, Run IO operations asynchronously and wait for their results

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 2.2.5, Package name: hs-async-2.2.5, Maintainer: pho

This package provides a higher-level interface over threads, in which
an Async a is a concurrent thread that will eventually deliver a value
of type a. The package provides ways to create Async computations,
wait for their results, and cancel them.

Using Async is safer than using threads in two ways:

When waiting for a thread to return a result, if the thread dies
with an exception then the caller must either re-throw the
exception (wait) or handle it (waitCatch); the exception cannot be
ignored.

The API makes it possible to build a tree of threads that are
automatically killed when their parent dies (see withAsync).


Required to run:
[devel/hs-hashable] [lang/ghc88]

Required to build:
[pkgtools/cwrappers]

Master sites:

Filesize: 15.373 KB

Version history: (Expand)


CVS history: (Expand)


   2024-04-29 14:11:10 by Masatake Daimon | Files touched by this commit (4)
Log message:
devel/hs-async: Update to 2.2.5

Changes in 2.2.5

    #117: Document that empty for Concurrently waits forever
    #120: Add ConcurrentlyE.
    #123: Fix failing concurrentlyE tests in older GHCs.
    #124: Allow hashable 1.4
    #126: Semigroup and Monoid instances for ConcurrentlyE
    #120: Add ConcurrentlyE
    #138: expose internals as Control.Concurrent.Async.Internal
    #131: Fix typos in docs
    #132: waitAny(Catch): clarify non-empty input list requirement
    #142: Add cancelMany
    #135, #145, #150: Support for GHC 9.4, 9.6, 9.8
    Document that empty for Concurrently waits forever.
   2023-11-02 07:37:49 by Masatake Daimon | Files touched by this commit (1141)
Log message:
Revbump all Haskell after updating lang/ghc96
   2023-10-28 11:38:42 by Masatake Daimon | Files touched by this commit (1)
Log message:
devel/hs-async: Fix build with GHC 9.6
   2023-10-09 06:55:01 by Masatake Daimon | Files touched by this commit (988)
Log message:
Bump Haskell packages after updating lang/ghc94
   2023-01-25 16:16:02 by Masatake Daimon | Files touched by this commit (4)
Log message:
devel/hs-async: Fix build with GHC 9.4
   2022-02-26 04:58:36 by Masatake Daimon | Files touched by this commit (872)
Log message:
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk
   2022-02-12 09:51:00 by Masatake Daimon | Files touched by this commit (575)
Log message:
revbump after changing the default Haskell compiler
   2022-02-11 14:26:15 by Masatake Daimon | Files touched by this commit (4)
Log message:
Update to async-2.2.4

No changelogs are provided by the upstream.