Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: appengine/cmd/milo/logdog/internal/stream.proto

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Rebarse Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/cmd/milo/logdog/internal/gen.go ('k') | appengine/cmd/milo/logdog/internal/stream.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/cmd/milo/logdog/internal/stream.proto
diff --git a/appengine/cmd/milo/logdog/internal/stream.proto b/appengine/cmd/milo/logdog/internal/stream.proto
new file mode 100644
index 0000000000000000000000000000000000000000..3da81ba15468d0f975c60f04da0198481f4d71d5
--- /dev/null
+++ b/appengine/cmd/milo/logdog/internal/stream.proto
@@ -0,0 +1,19 @@
+// Copyright 2016 The LUCI Authors. All rights reserved.
+// Use of this source code is governed under the Apache License, Version 2.0
+// that can be found in the LICENSE file.
+
+syntax = "proto3";
+
+package internal;
+
+import "github.com/luci/luci-go/common/proto/milo/annotations.proto";
+
+// Item is a full annotation protobuf state item. It is used to serialize and
+// deserialize Step and associated fetch data into memcache.
+message CachedStep {
+ // Step is the root annotation step.
+ milo.Step step = 1;
+
+ // Finished is true if this is the last annotation protobuf in the stream.
+ bool finished = 2;
+}
« no previous file with comments | « appengine/cmd/milo/logdog/internal/gen.go ('k') | appengine/cmd/milo/logdog/internal/stream.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698