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-11-09 09:39:21 +00:00
|
|
|
|
|
|
|
Validate()
|
2017-09-01 06:13:18 +00:00
|
|
|
}
|