本文整理汇总了Golang中github.com/burke/zeus/go/processtree.ProcessTree.RestartNodesWithFeatures方法的典型用法代码示例。如果您正苦于以下问题:Golang ProcessTree.RestartNodesWithFeatures方法的具体用法?Golang ProcessTree.RestartNodesWithFeatures怎么用?Golang ProcessTree.RestartNodesWithFeatures使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/burke/zeus/go/processtree.ProcessTree
的用法示例。
在下文中一共展示了ProcessTree.RestartNodesWithFeatures方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: start
// Collect file changes that happen FileChangeWindow ms from each
// other, and restart all nodes in the process tree that match
// features of the changed files.
func start(tree *processtree.ProcessTree, filesChanged chan string, done, quit chan bool) {
for {
select {
case <-quit:
done <- true
return
case file := <-filesChanged:
changed := make(map[string]bool)
changed[file] = true
slog.Trace("Restarter got the first file of potentially many")
deadline := time.After(FileChangeWindow)
deadline_expired := false
for !deadline_expired {
select {
case <-quit:
done <- true
return
case file := <-filesChanged:
changed[file] = true
case <-deadline:
deadline_expired = true
}
}
slog.Trace("Restarter has gathered %d changed files", len(changed))
go tree.RestartNodesWithFeatures(changed)
}
}
}