mirror of
https://github.com/oarkflow/mq.git
synced 2025-09-26 20:11:16 +08:00
11 lines
216 B
Go
11 lines
216 B
Go
package sio
|
|
|
|
type Adapter interface {
|
|
Init()
|
|
Shutdown() error
|
|
BroadcastToBackend(*BroadcastMsg)
|
|
RoomcastToBackend(*RoomMsg)
|
|
BroadcastFromBackend(b chan<- *BroadcastMsg)
|
|
RoomcastFromBackend(r chan<- *RoomMsg)
|
|
}
|