hactors: Practical actors for Haskell.

[ concurrency, library, mit ] [ Propose Tags ]

This library is about to implement the Erlang-like actor model on top of the GHC's concurrency.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.3.1
Dependencies base (>=4 && <5), stm (>=2.2 && <2.3) [details]
License MIT
Author Heka Treep
Maintainer Heka Treep <zena.treep@gmail.com>
Category Concurrency
Home page https://github.com/treep/hactors
Bug tracker https://github.com/treep/hactors/issues
Source repo head: git clone git://github.com/treep/hactors.git
Uploaded by HekaTreep at 2012-01-29T14:51:21Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1305 total (4 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for hactors-0.0.3.1

[back to package description]

About

This library is about to implement the actor model on top of the GHC's concurrency. Actors works as VM's lightweight threads and messages works with STM's channels.

Usage

The Control.Concurrent.Actor module provides the API that mimics Erlang's concurrency primitives. See the haddocks for more details.

Issues

  • Implement the flush funtion (to show already received messages)?

  • Write more examples.