overflow_subscriber/subscriber_handler.go

7 lines
142 B
Go
Raw Normal View History

2017-09-01 06:13:18 +00:00
package overflow_subscriber
type SubscriberHandler interface {
GetChannel() string
2017-09-27 08:07:34 +00:00
OnSubscribe(channel string, message SubscribeMessage)
2017-09-01 06:13:18 +00:00
}