himilsbach
himilsbach copied to clipboard
A tiny actor library for Clojure
himilsbach
A tiny actor library for Clojure.
Usage
(require '[himilsbach.core :as him])
(let [actor (him/new
[:ping timestamp] (let [now (System/nanoTime)
dt (/ (- now timestamp) 1000)]
(println (him/id self) "pinged" dt "μs ago"))
[:die] (do
(println (him/id self) "gracefully dies")
(die))
something (println (him/id self) "received" something))]
(him/start actor)
(him/send! actor :ping (System/nanoTime))
(him/send! actor "some" :unexpected 'values)
(him/send! actor :die))
An example with a full graph of actors sending pings to each other can be found
in test/himilsbach/test/benchmark.clj. Run it with
lein run -m himilsbach.test.benchmark
Himilsbach is available on Clojars.
[himilsbach "0.1.0"]
Documentation generated using Marginalia is available.
Related work
- clojure_actors – actors implemented on top of Clojure agents
- Jobim – an actors library for Clojure
- Rich Hickey, Message Passing and Actors
Copyrights
Copyright (c) 2012–2013 Jan Stępień
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
