1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-30 19:15:23 +00:00
v2fly/app/pubsub.go
Darien Raymond b6ed26aedf pubsub
2015-12-11 14:56:10 +00:00

10 lines
197 B
Go

package app
type PubsubMessage []byte
type TopicHandler func(PubsubMessage)
type Pubsub interface {
Publish(topic string, message PubsubMessage)
Subscribe(topic string, handler TopicHandler)
}