Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(28)

Unified Diff: mstate/watcher/watcher.go

Issue 6489111: mstate: use Dead channels rather than Dying for watcher and presence
Patch Set: mstate: use Dead channels rather than Dying for watcher and presence Created 12 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mstate/watcher.go ('k') | mstate/watcher/watcher_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mstate/watcher/watcher.go
=== modified file 'mstate/watcher/watcher.go'
--- mstate/watcher/watcher.go 2012-09-10 16:19:57 +0000
+++ mstate/watcher/watcher.go 2012-09-11 13:58:35 +0000
@@ -97,10 +97,9 @@
return w.tomb.Wait()
}
-// Dying returns a channel that is closed when the watcher is stopping
-// due to an error or because Stop was called explicitly.
-func (w *Watcher) Dying() <-chan struct{} {
- return w.tomb.Dying()
+// Dead returns a channel that is closed when the watcher has stopped.
+func (w *Watcher) Dead() <-chan struct{} {
+ return w.tomb.Dead()
}
// Err returns the error with which the watcher stopped.
« no previous file with comments | « mstate/watcher.go ('k') | mstate/watcher/watcher_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b