mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-06 01:07:06 +08:00
12 lines
216 B
Go
12 lines
216 B
Go
package redis
|
|
|
|
type Connection interface {
|
|
Write([]byte) error
|
|
|
|
// client should keep its subscribing channels
|
|
SubsChannel(channel string)
|
|
UnSubsChannel(channel string)
|
|
SubsCount() int
|
|
GetChannels() []string
|
|
}
|