1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-14 16:08:15 -04:00
v2fly/app/pubsub.go

10 lines
197 B
Go
Raw Normal View History

2015-12-11 09:56:10 -05:00
package app
type PubsubMessage []byte
type TopicHandler func(PubsubMessage)
type Pubsub interface {
Publish(topic string, message PubsubMessage)
Subscribe(topic string, handler TopicHandler)
}