Skip to content

Commit

Permalink
wip: test docu lists
Browse files Browse the repository at this point in the history
  • Loading branch information
semiversus committed Oct 1, 2018
1 parent c690dc5 commit b970043
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions broqer/publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ class Publisher():
As information receiver use following method to interact with Publisher
* ``.subscribe(subscriber)`` to subscribe for events on this publisher
* ``.unsubscribe(subscriber)`` to unsubscribe
* ``.get()`` to get the current state (will raise ValueError if not
- ``.subscribe(subscriber)`` to subscribe for events on this publisher
- ``.unsubscribe(subscriber)`` to unsubscribe
- ``.get()`` to get the current state (will raise ValueError if not
stateful)
When implementing a Publisher use the following methods:
* ``.notify(value)`` calls .emit(value) on all subscribers
- ``.notify(value)`` calls .emit(value) on all subscribers
:ivar _subscriptions: holding a list of subscribers
"""
Expand Down

0 comments on commit b970043

Please sign in to comment.