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

Unified Diff: appengine/cmd/milo/logdog/internal/stream.pb.go

Issue 2191693003: Milo: Add LogDog annotation stream support. (Closed) Base URL: https://github.com/luci/luci-go@master
Patch Set: Fixed bug, moved some things to http.go 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
Index: appengine/cmd/milo/logdog/internal/stream.pb.go
diff --git a/appengine/cmd/milo/logdog/internal/stream.pb.go b/appengine/cmd/milo/logdog/internal/stream.pb.go
new file mode 100644
index 0000000000000000000000000000000000000000..637dc53fa54aa51bf5322e4b4a5c437bce4844ee
--- /dev/null
+++ b/appengine/cmd/milo/logdog/internal/stream.pb.go
@@ -0,0 +1,76 @@
+// Code generated by protoc-gen-go.
+// source: github.com/luci/luci-go/appengine/cmd/milo/logdog/internal/stream.proto
+// DO NOT EDIT!
+
+/*
+Package internal is a generated protocol buffer package.
+
+It is generated from these files:
+ github.com/luci/luci-go/appengine/cmd/milo/logdog/internal/stream.proto
+
+It has these top-level messages:
+ Item
+*/
+package internal
+
+import proto "github.com/golang/protobuf/proto"
+import fmt "fmt"
+import math "math"
+import milo "github.com/luci/luci-go/common/proto/milo"
+
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
+
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
+
+// Item is a full annotation protobuf state item. It is used to serialize and
+// deserialize Step and associated fetch data into memcache.
+//
+type Item struct {
+ // Step is the root annotation step.
+ Step *milo.Step `protobuf:"bytes,1,opt,name=step" json:"step,omitempty"`
+ // Finished is true if this is the last annotation protobuf in the stream.
+ Finished bool `protobuf:"varint,2,opt,name=finished" json:"finished,omitempty"`
+}
+
+func (m *Item) Reset() { *m = Item{} }
+func (m *Item) String() string { return proto.CompactTextString(m) }
+func (*Item) ProtoMessage() {}
+func (*Item) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
+
+func (m *Item) GetStep() *milo.Step {
+ if m != nil {
+ return m.Step
+ }
+ return nil
+}
+
+func init() {
+ proto.RegisterType((*Item)(nil), "internal.Item")
+}
+
+func init() {
+ proto.RegisterFile("github.com/luci/luci-go/appengine/cmd/milo/logdog/internal/stream.proto", fileDescriptor0)
+}
+
+var fileDescriptor0 = []byte{
+ // 177 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x8c, 0xb1, 0x8a, 0xc3, 0x30,
+ 0x10, 0x05, 0xf1, 0x61, 0x0e, 0xa3, 0xeb, 0x5c, 0x19, 0x17, 0xc7, 0x71, 0x55, 0x9a, 0x68, 0x21,
+ 0x29, 0xd3, 0xa5, 0x09, 0x69, 0x9d, 0x2f, 0x90, 0x6d, 0x45, 0x5e, 0x90, 0x76, 0x85, 0xb5, 0xfe,
+ 0xff, 0x38, 0x32, 0x49, 0x97, 0xe6, 0xc1, 0x1b, 0x86, 0x51, 0x17, 0x87, 0x32, 0x2d, 0xbd, 0x1e,
+ 0x38, 0x80, 0x5f, 0x06, 0xcc, 0xb3, 0x77, 0x0c, 0x26, 0x46, 0x4b, 0x0e, 0xc9, 0xc2, 0x10, 0x46,
+ 0x08, 0xe8, 0x19, 0x3c, 0xbb, 0x91, 0x1d, 0x20, 0x89, 0x9d, 0xc9, 0x78, 0x48, 0x32, 0x5b, 0x13,
+ 0x74, 0x9c, 0x59, 0xb8, 0xae, 0x5e, 0xb8, 0x3d, 0x7d, 0x4a, 0xae, 0x20, 0x30, 0x41, 0xf6, 0xb7,
+ 0xa2, 0x21, 0x62, 0x31, 0x82, 0x4c, 0x69, 0xcb, 0xfc, 0x9f, 0x55, 0x79, 0x15, 0x1b, 0xea, 0x5f,
+ 0x55, 0x26, 0xb1, 0xb1, 0x29, 0xfe, 0x8a, 0xdd, 0xcf, 0x41, 0xe9, 0xa7, 0xae, 0x6f, 0x2b, 0xe9,
+ 0x32, 0xaf, 0x5b, 0x55, 0xdd, 0x91, 0x30, 0x4d, 0x76, 0x6c, 0xbe, 0x56, 0xa7, 0xea, 0xde, 0xbf,
+ 0xff, 0xce, 0xa9, 0xe3, 0x23, 0x00, 0x00, 0xff, 0xff, 0x90, 0x53, 0x28, 0x14, 0xdc, 0x00, 0x00,
+ 0x00,
+}

Powered by Google App Engine
This is Rietveld 408576698