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

Unified Diff: worker/cleaner/cleaner.go

Issue 12198044: worker: Introducing StringsWorker (Closed)
Patch Set: worker: Introducing StringsWorker Created 11 years, 8 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 | « [revision details] ('k') | worker/cleaner/cleaner_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: worker/cleaner/cleaner.go
=== modified file 'worker/cleaner/cleaner.go'
--- worker/cleaner/cleaner.go 2013-07-10 10:42:20 +0000
+++ worker/cleaner/cleaner.go 2013-08-01 12:52:53 +0000
@@ -4,8 +4,6 @@
package cleaner
import (
- "fmt"
-
"launchpad.net/juju-core/log"
"launchpad.net/juju-core/state"
"launchpad.net/juju-core/state/api"
@@ -17,16 +15,12 @@
st *state.State
}
-// NewCleaner returns a worker.NotifyWorker that runs state.Cleanup()
+// NewCleaner returns a worker.Worker that runs state.Cleanup()
// if the CleanupWatcher signals documents marked for deletion.
-func NewCleaner(st *state.State) worker.NotifyWorker {
+func NewCleaner(st *state.State) worker.Worker {
return worker.NewNotifyWorker(&Cleaner{st: st})
}
-func (c *Cleaner) String() string {
- return fmt.Sprintf("cleaner")
-}
-
func (c *Cleaner) SetUp() (api.NotifyWatcher, error) {
return c.st.WatchCleanups(), nil
}
« no previous file with comments | « [revision details] ('k') | worker/cleaner/cleaner_test.go » ('j') | no next file with comments »

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