Files
redis-go/interface/redis/client.go
2021-05-02 18:48:44 +08:00

12 lines
212 B
Go

package redis
type Connection interface {
Write([]byte) error
// client should keep its subscribing channels
Subscribe(channel string)
UnSubscribe(channel string)
SubsCount() int
GetChannels() []string
}