Add support for notifications 34/4534/4
authorTimothy Ebido <tj.ebido@samsung.com>
Wed, 12 Aug 2020 01:49:26 +0000 (10:49 +0900)
committerTimothy Ebido <tj.ebido@samsung.com>
Wed, 26 Aug 2020 04:50:30 +0000 (13:50 +0900)
commita4392393ef8caf68217c2c5c59d13b183010422f
tree6163b489099f094c1e64c81365386b5e2164a002
parent6e821ec539cd57e701274e354ee229d8455b6724
Add support for notifications

- set_and_publish
- set_if_and_publish
- remove_and_publish
- remove_if_and_publish
- remove_all_and_publish
- start_event_listener
- handle_events
- subscribe_channel
- unsubscribe_channel

Issue ID: RIC-372

Signed-off-by: Timothy Ebido <tj.ebido@samsung.com>
Change-Id: I55b32df5cdf6ed394a80fe70f8cd1e0d09dc4b3b
12 files changed:
docs/release-notes.rst
ricsdl-package/README.md [changed mode: 0644->0755]
ricsdl-package/examples/notify.py [new file with mode: 0755]
ricsdl-package/ricsdl/__init__.py
ricsdl-package/ricsdl/backend/dbbackend_abc.py [changed mode: 0644->0755]
ricsdl-package/ricsdl/backend/fake_dict_db.py [changed mode: 0644->0755]
ricsdl-package/ricsdl/backend/redis.py [changed mode: 0644->0755]
ricsdl-package/ricsdl/syncstorage.py [changed mode: 0644->0755]
ricsdl-package/ricsdl/syncstorage_abc.py [changed mode: 0644->0755]
ricsdl-package/tests/backend/test_fake_dict_db.py [changed mode: 0644->0755]
ricsdl-package/tests/backend/test_redis.py [changed mode: 0644->0755]
ricsdl-package/tests/test_syncstorage.py [changed mode: 0644->0755]