veyron2/services/store: API for Object-level watches.
Specifics:
- Object now has a Watch method consistent with Query, Glob, etc.
- Store no longer has a Watch method. For full-store watches, clients
can watch the root object.
- Vsync now calls raw.Store.Watch. The vstore handle has been deleted.
Change-Id: Id01b791564d0b684fe9118ef399d129669693267
diff --git a/services/store/server/object.go b/services/store/server/object.go
index 5ec1fa2..741954b 100644
--- a/services/store/server/object.go
+++ b/services/store/server/object.go
@@ -9,6 +9,7 @@
"veyron2/query"
"veyron2/services/mounttable"
"veyron2/services/store"
+ "veyron2/services/watch"
"veyron2/storage"
"veyron2/vdl"
)
@@ -212,3 +213,8 @@
}
return nil
}
+
+// Watch returns a stream of changes.
+func (o *object) Watch(ctx ipc.Context, req watch.Request, stream watch.WatcherServiceWatchStream) error {
+ panic("not implemented")
+}