當前位置: 首頁>>代碼示例>>Golang>>正文


Golang ProcessTree.RestartNodesWithFeatures方法代碼示例

本文整理匯總了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)
		}
	}
}
開發者ID:grosser,項目名稱:zeus,代碼行數:32,代碼來源:restarter.go


注:本文中的github.com/burke/zeus/go/processtree.ProcessTree.RestartNodesWithFeatures方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。