本文整理汇总了Golang中github.com/cockroachdb/cockroach/util.Feed.Subscribe方法的典型用法代码示例。如果您正苦于以下问题:Golang Feed.Subscribe方法的具体用法?Golang Feed.Subscribe怎么用?Golang Feed.Subscribe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cockroachdb/cockroach/util.Feed
的用法示例。
在下文中一共展示了Feed.Subscribe方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: StartMonitorFeed
// StartMonitorFeed starts a goroutine which processes events published to the
// supplied Subscription. The goroutine will continue running until the
// Subscription's Events feed is closed.
func (nsm *NodeStatusMonitor) StartMonitorFeed(feed *util.Feed) {
sub := feed.Subscribe()
go func() {
for event := range sub.Events() {
if syncEvent, ok := event.(*TestSyncEvent); ok {
syncEvent.consume()
}
ProcessNodeEvent(nsm, event)
storage.ProcessStoreEvent(nsm, event)
}
}()
}
示例2: StartMonitorFeed
// StartMonitorFeed starts a goroutine which processes events published to the
// supplied Subscription. The goroutine will continue running until the
// Subscription's Events feed is closed.
func (nsm *NodeStatusMonitor) StartMonitorFeed(feed *util.Feed) {
go storage.ProcessStoreEvents(nsm, feed.Subscribe())
go ProcessNodeEvents(nsm, feed.Subscribe())
}
示例3: readEvents
func (ner *nodeEventReader) readEvents(feed *util.Feed) {
ner.perNodeFeeds = make(map[roachpb.NodeID][]string)
feed.Subscribe(ner.recordEvent)
}
示例4: readEvents
func (ser *storeEventReader) readEvents(feed *util.Feed) {
ser.perStoreFeeds = make(map[roachpb.StoreID][]string)
ser.perStoreUpdateCount = make(map[roachpb.StoreID]map[roachpb.Method]int)
feed.Subscribe(ser.recordEvent)
}
示例5: StartMonitorFeed
// StartMonitorFeed starts a goroutine which processes events published to the
// supplied Subscription. The goroutine will continue running until the
// Subscription's Events feed is closed.
func (nsm *NodeStatusMonitor) StartMonitorFeed(feed *util.Feed) {
feed.Subscribe(func(event interface{}) {
ProcessNodeEvent(nsm, event)
storage.ProcessStoreEvent(nsm, event)
})
}
示例6: newSimpleEventConsumer
func newSimpleEventConsumer(feed *util.Feed) *simpleEventConsumer {
return &simpleEventConsumer{
sub: feed.Subscribe(),
}
}
示例7: newConsumer
func newConsumer(feed *util.Feed) *storeEventConsumer {
return &storeEventConsumer{
sub: feed.Subscribe(),
}
}