本文整理匯總了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)
}
}
}