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

Unified Diff: state/apiserver/root.go

Issue 10939043: state/api/watcher: Refactor API watchers
Patch Set: state/api/watcher: Refactor API watchers Created 11 years, 9 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 | « state/apiserver/machine/machiner_test.go ('k') | state/apiserver/upgrader/upgrader_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/apiserver/root.go
=== modified file 'state/apiserver/root.go'
--- state/apiserver/root.go 2013-07-04 07:47:38 +0000
+++ state/apiserver/root.go 2013-07-05 10:28:47 +0000
@@ -129,25 +129,6 @@
}, nil
}
-// EnvironConfigWatcher returns an object that provides
-// API access to methods on a state.EnvironConfigWatcher.
-// Each client has its own current set of watchers, stored
-// in r.resources.
-func (r *srvRoot) EnvironConfigWatcher(id string) (*srvEnvironConfigWatcher, error) {
- if err := r.requireAgent(); err != nil {
- return nil, err
- }
- watcher, ok := r.resources.Get(id).(*state.EnvironConfigWatcher)
- if !ok {
- return nil, common.ErrUnknownWatcher
- }
- return &srvEnvironConfigWatcher{
- watcher: watcher,
- id: id,
- resources: r.resources,
- }, nil
-}
-
// AllWatcher returns an object that provides API access to methods on
// a state/multiwatcher.Watcher, which watches any changes to the
// state. Each client has its own current set of watchers, stored in
« no previous file with comments | « state/apiserver/machine/machiner_test.go ('k') | state/apiserver/upgrader/upgrader_test.go » ('j') | no next file with comments »

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