simple-observer: The Observer pattern

[ bsd3, control, library ] [ Propose Tags ]

This is a simple Haskell implementation of the Observer pattern, specified as a typeclass with one example instance (demonstrating synchronous notifications). It is based on Observable.hs by Bastiaan Heeren, originally from http://www.cs.uu.nl/wiki/bin/view/Afp0607/ExerciseWXHaskell


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1
Dependencies base (>=4 && <5) [details]
License BSD-3-Clause
Copyright Andy Gimblett <haskell@gimbo.org.uk>
Author Andy Gimblett <haskell@gimbo.org.uk>
Maintainer Andy Gimblett <haskell@gimbo.org.uk>
Category Control
Home page http://github.com/gimbo/observer.hs
Source repo head: git clone http://github.com/gimbo/observer.hs
Uploaded by AndyGimblett at 2009-11-11T22:09:59Z
Distributions NixOS:0.0.1
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 1302 total (9 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 simple-observer-0.0.1

[back to package description]
simple-observer
===============

This is a Haskell implementation of the Observer design pattern [1,2],
providing a typeclass and an example implementation (Synchronous)
which is perfectly usable in its own right.

This package is based on Observable.hs by Bastiaan Heeren [3],
originally published as part of an exercise [4] for his students.  It
has been modified, extended and packaged by Andy Gimblett [5,6].

TODO
----

* Implement a mechanism for removal of observers.  Consider Tom
  Lokhorst's suggestion on haskell-cafe [7].

Changelog
---------

2009.11.11 v0.0.1 - first release, renamed from observer to
                    simple-observer in recognition that there are more
                    sophisticated ways to skin this particular cat.

2009.10.30 v0.0.0 - first Cabalised version, unreleased.

--

[1] Gamma et al: `Design Patterns: Elements of Reusable
    Object-Oriented Software', Addison-Wesley, 1994.
[2] http://en.wikipedia.org/wiki/Observer_pattern
[3] http://people.cs.uu.nl/bastiaan/
[4] http://www.cs.uu.nl/wiki/bin/view/Afp0607/ExerciseWXHaskell
[5] http://www.cs.swan.ac.uk/~csandy/
[6] email:haskell@gimbo.org.uk
[7] http://www.haskell.org/pipermail/haskell-cafe/2009-November/068915.html