diff options
author | Valery Piashchynski <[email protected]> | 2021-05-18 15:36:06 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-18 15:36:06 +0300 |
commit | f85172106b4723b705aa75c3c310e8cebd050a8d (patch) | |
tree | aa98200d5d01776d4328c31c79b8af52986a4375 /plugins/broadcast/interface.go | |
parent | 60a3793f83c672e24283c009f53e780a4932be50 (diff) |
- Add protected connection
- Update arch diagram
- Update interfaces
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/broadcast/interface.go')
-rw-r--r-- | plugins/broadcast/interface.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/broadcast/interface.go b/plugins/broadcast/interface.go index 716b3aac..3ed8b412 100644 --- a/plugins/broadcast/interface.go +++ b/plugins/broadcast/interface.go @@ -18,7 +18,8 @@ type Subscriber interface { } type Storage interface { - Store() + Store(topics ...string) + StorePattern(pattern string) } type Publisher interface { |