-
Notifications
You must be signed in to change notification settings - Fork 1
Technical Overview
yearofthedan edited this page Jun 13, 2017
·
1 revision
Rabble Rouser uses event streaming. Essentially, applications can emit events onto a Kinesis stream 8000 and have other applications listen for these events.
Events are of a particular structure (JSON), but most of the payload is up to you.
The event store saves events in the order they arrive, giving you the ability to see all the events of a particular type at a particularly point in time - essentially a history of the state of the app as it changes.
We designed it to be modular. We wanted it to be easy for people to build their own extensions to the app and deploy them.