Skip to content

Commit

Permalink
Add __doc__
Browse files Browse the repository at this point in the history
  • Loading branch information
epandurski committed Nov 21, 2018
1 parent 98a974e commit c6d6c27
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,23 @@
Flask-SignalBus
---------------
TODO
Adds to Flask-SQLAlchemy the capability to *atomically* send messages
(signals) over a message bus.
The processing of each message involves three steps:
1. The message is recorded in the SQL database as a row in a table.
2. The message is sent over the message bus (RabbitMQ for example).
3. Message's corresponding table row is deleted.
Normally, the sending of the recorded messages (steps 2 and 3) is done
automatically after each transaction commit, but when needed, it can
also be triggered explicitly with a method call, or through the Flask
CLI.
"""

import sys
from setuptools import setup

Expand Down

0 comments on commit c6d6c27

Please sign in to comment.