diff options
author | Valery Piashchynski <[email protected]> | 2021-05-27 00:09:33 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-05-27 00:09:33 +0300 |
commit | dc3c5455e5c9b32737a0620c8bdb8bda0226dba7 (patch) | |
tree | 6ba562da6de7f32a8d528b72cbb56a8bc98c1b30 /plugins/broadcast/redis/driver.go | |
parent | d2e9d8320857f5768c54843a43ad16f59d6a3e8f (diff) |
- Update all main abstractions
- Desighn a new interfaces responsible for the whole PubSub
- New plugin - websockets
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/broadcast/redis/driver.go')
-rw-r--r-- | plugins/broadcast/redis/driver.go | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/plugins/broadcast/redis/driver.go b/plugins/broadcast/redis/driver.go deleted file mode 100644 index 556d5f03..00000000 --- a/plugins/broadcast/redis/driver.go +++ /dev/null @@ -1,29 +0,0 @@ -package redis - -import ( - "github.com/spiral/roadrunner/v2/plugins/broadcast" -) - -type Driver struct { -} - -func NewInMemoryDriver() broadcast.Storage { - b := &Driver{} - return b -} - -func (d *Driver) Store(uuid string, topics ...string) { - panic("implement me") -} - -func (d *Driver) StorePattern(uuid string, pattern string) { - panic("implement me") -} - -func (d *Driver) GetConnection(pattern string) []string { - panic("implement me") -} - -func (d *Driver) Construct(key string) (broadcast.Storage, error) { - panic("implement me") -} |