overflow_subscriber/subscriber_handler.go

7 lines
132 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 07:10:29 +00:00
OnSubscribe(channel string, payload string)
2017-09-01 06:13:18 +00:00
}