Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qnikst/2pc-haskell
two-phase-commit implementation
https://github.com/qnikst/2pc-haskell
Last synced: 17 days ago
JSON representation
two-phase-commit implementation
- Host: GitHub
- URL: https://github.com/qnikst/2pc-haskell
- Owner: qnikst
- License: bsd-3-clause
- Created: 2013-02-08T16:28:16.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-04-17T07:58:05.000Z (over 11 years ago)
- Last Synced: 2024-10-09T15:55:26.305Z (28 days ago)
- Language: Haskell
- Size: 227 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
# 2pc is a two phase transaction implementation.
2pc is abstracted over the communication type to integrate
2pc into your application you need to:* define a TPNetwork class instance, that describes 2pc
can send message over the network.* write function that will feed controller with new events
As an example you can see Network.TwoPhase.STM