| OLD | NEW |
| (Empty) | |
| 1 // Code generated by protoc-gen-go. |
| 2 // source: github.com/luci/luci-go/appengine/cmd/milo/logdog/internal/stream.pro
to |
| 3 // DO NOT EDIT! |
| 4 |
| 5 /* |
| 6 Package internal is a generated protocol buffer package. |
| 7 |
| 8 It is generated from these files: |
| 9 github.com/luci/luci-go/appengine/cmd/milo/logdog/internal/stream.proto |
| 10 |
| 11 It has these top-level messages: |
| 12 Item |
| 13 */ |
| 14 package internal |
| 15 |
| 16 import proto "github.com/golang/protobuf/proto" |
| 17 import fmt "fmt" |
| 18 import math "math" |
| 19 import milo "github.com/luci/luci-go/common/proto/milo" |
| 20 |
| 21 // Reference imports to suppress errors if they are not otherwise used. |
| 22 var _ = proto.Marshal |
| 23 var _ = fmt.Errorf |
| 24 var _ = math.Inf |
| 25 |
| 26 // This is a compile-time assertion to ensure that this generated file |
| 27 // is compatible with the proto package it is being compiled against. |
| 28 // A compilation error at this line likely means your copy of the |
| 29 // proto package needs to be updated. |
| 30 const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package |
| 31 |
| 32 // Item is a full annotation protobuf state item. It is used to serialize and |
| 33 // deserialize Step and associated fetch data into memcache. |
| 34 // |
| 35 type Item struct { |
| 36 // Step is the root annotation step. |
| 37 Step *milo.Step `protobuf:"bytes,1,opt,name=step" json:"step,omitempty"` |
| 38 // Finished is true if this is the last annotation protobuf in the strea
m. |
| 39 Finished bool `protobuf:"varint,2,opt,name=finished" json:"finished,omit
empty"` |
| 40 } |
| 41 |
| 42 func (m *Item) Reset() { *m = Item{} } |
| 43 func (m *Item) String() string { return proto.CompactTextString(m) } |
| 44 func (*Item) ProtoMessage() {} |
| 45 func (*Item) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } |
| 46 |
| 47 func (m *Item) GetStep() *milo.Step { |
| 48 if m != nil { |
| 49 return m.Step |
| 50 } |
| 51 return nil |
| 52 } |
| 53 |
| 54 func init() { |
| 55 proto.RegisterType((*Item)(nil), "internal.Item") |
| 56 } |
| 57 |
| 58 func init() { |
| 59 proto.RegisterFile("github.com/luci/luci-go/appengine/cmd/milo/logdog/in
ternal/stream.proto", fileDescriptor0) |
| 60 } |
| 61 |
| 62 var fileDescriptor0 = []byte{ |
| 63 // 177 bytes of a gzipped FileDescriptorProto |
| 64 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x8c,
0xb1, 0x8a, 0xc3, 0x30, |
| 65 0x10, 0x05, 0xf1, 0x61, 0x0e, 0xa3, 0xeb, 0x5c, 0x19, 0x17, 0xc7, 0x71,
0x55, 0x9a, 0x68, 0x21, |
| 66 0x29, 0xd3, 0xa5, 0x09, 0x69, 0x9d, 0x2f, 0x90, 0x6d, 0x45, 0x5e, 0x90,
0x76, 0x85, 0xb5, 0xfe, |
| 67 0xff, 0x38, 0x32, 0x49, 0x97, 0xe6, 0xc1, 0x1b, 0x86, 0x51, 0x17, 0x87,
0x32, 0x2d, 0xbd, 0x1e, |
| 68 0x38, 0x80, 0x5f, 0x06, 0xcc, 0xb3, 0x77, 0x0c, 0x26, 0x46, 0x4b, 0x0e,
0xc9, 0xc2, 0x10, 0x46, |
| 69 0x08, 0xe8, 0x19, 0x3c, 0xbb, 0x91, 0x1d, 0x20, 0x89, 0x9d, 0xc9, 0x78,
0x48, 0x32, 0x5b, 0x13, |
| 70 0x74, 0x9c, 0x59, 0xb8, 0xae, 0x5e, 0xb8, 0x3d, 0x7d, 0x4a, 0xae, 0x20,
0x30, 0x41, 0xf6, 0xb7, |
| 71 0xa2, 0x21, 0x62, 0x31, 0x82, 0x4c, 0x69, 0xcb, 0xfc, 0x9f, 0x55, 0x79,
0x15, 0x1b, 0xea, 0x5f, |
| 72 0x55, 0x26, 0xb1, 0xb1, 0x29, 0xfe, 0x8a, 0xdd, 0xcf, 0x41, 0xe9, 0xa7,
0xae, 0x6f, 0x2b, 0xe9, |
| 73 0x32, 0xaf, 0x5b, 0x55, 0xdd, 0x91, 0x30, 0x4d, 0x76, 0x6c, 0xbe, 0x56,
0xa7, 0xea, 0xde, 0xbf, |
| 74 0xff, 0xce, 0xa9, 0xe3, 0x23, 0x00, 0x00, 0xff, 0xff, 0x90, 0x53, 0x28,
0x14, 0xdc, 0x00, 0x00, |
| 75 0x00, |
| 76 } |
| OLD | NEW |