OLD | NEW |
| (Empty) |
1 // Code generated by protoc-gen-go. DO NOT EDIT. | |
2 // source: github.com/luci/luci-go/milo/appengine/logdog/internal/stream.proto | |
3 | |
4 /* | |
5 Package internal is a generated protocol buffer package. | |
6 | |
7 It is generated from these files: | |
8 github.com/luci/luci-go/milo/appengine/logdog/internal/stream.proto | |
9 | |
10 It has these top-level messages: | |
11 CachedStep | |
12 */ | |
13 package internal | |
14 | |
15 import proto "github.com/golang/protobuf/proto" | |
16 import fmt "fmt" | |
17 import math "math" | |
18 import milo "github.com/luci/luci-go/common/proto/milo" | |
19 | |
20 // Reference imports to suppress errors if they are not otherwise used. | |
21 var _ = proto.Marshal | |
22 var _ = fmt.Errorf | |
23 var _ = math.Inf | |
24 | |
25 // This is a compile-time assertion to ensure that this generated file | |
26 // is compatible with the proto package it is being compiled against. | |
27 // A compilation error at this line likely means your copy of the | |
28 // proto package needs to be updated. | |
29 const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package | |
30 | |
31 // Item is a full annotation protobuf state item. It is used to serialize and | |
32 // deserialize Step and associated fetch data into memcache. | |
33 type CachedStep struct { | |
34 // Step is the root annotation step. | |
35 Step *milo.Step `protobuf:"bytes,1,opt,name=step" json:"step,omitempty"` | |
36 // Finished is true if this is the last annotation protobuf in the strea
m. | |
37 Finished bool `protobuf:"varint,2,opt,name=finished" json:"finished,omit
empty"` | |
38 } | |
39 | |
40 func (m *CachedStep) Reset() { *m = CachedStep{} } | |
41 func (m *CachedStep) String() string { return proto.CompactTextString
(m) } | |
42 func (*CachedStep) ProtoMessage() {} | |
43 func (*CachedStep) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{
0} } | |
44 | |
45 func (m *CachedStep) GetStep() *milo.Step { | |
46 if m != nil { | |
47 return m.Step | |
48 } | |
49 return nil | |
50 } | |
51 | |
52 func (m *CachedStep) GetFinished() bool { | |
53 if m != nil { | |
54 return m.Finished | |
55 } | |
56 return false | |
57 } | |
58 | |
59 func init() { | |
60 proto.RegisterType((*CachedStep)(nil), "internal.CachedStep") | |
61 } | |
62 | |
63 func init() { | |
64 proto.RegisterFile("github.com/luci/luci-go/milo/appengine/logdog/intern
al/stream.proto", fileDescriptor0) | |
65 } | |
66 | |
67 var fileDescriptor0 = []byte{ | |
68 // 179 bytes of a gzipped FileDescriptorProto | |
69 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0xcc,
0xbf, 0x6a, 0xc4, 0x30, | |
70 0x0c, 0x06, 0x70, 0x52, 0x4a, 0x09, 0xee, 0x96, 0x29, 0x64, 0x28, 0xa1,
0x53, 0x96, 0xda, 0xd0, | |
71 0x8e, 0x1d, 0xb3, 0xdc, 0x9c, 0x7b, 0x02, 0xc7, 0xd1, 0x39, 0x02, 0x5b,
0x32, 0xb1, 0xf2, 0xfe, | |
72 0x47, 0x7c, 0x7f, 0xb6, 0x5b, 0x04, 0xfa, 0xa4, 0xef, 0xa7, 0x46, 0x8f,
0xb2, 0xee, 0xb3, 0x76, | |
73 0x1c, 0x4d, 0xd8, 0x1d, 0x96, 0xf1, 0xe3, 0xd9, 0x44, 0x0c, 0x6c, 0x6c,
0x4a, 0x40, 0x1e, 0x09, | |
74 0x4c, 0x60, 0xbf, 0xb0, 0x37, 0x48, 0x02, 0x1b, 0xd9, 0x60, 0xb2, 0x6c,
0x60, 0xa3, 0x4e, 0x1b, | |
75 0x0b, 0x37, 0xf5, 0x23, 0xee, 0xfe, 0x5f, 0x71, 0x8e, 0x63, 0x64, 0x32,
0xe5, 0xff, 0x6e, 0x13, | |
76 0xb1, 0x58, 0x41, 0xa6, 0x7c, 0x63, 0xbe, 0x4f, 0x4a, 0x8d, 0xd6, 0xad,
0xb0, 0x9c, 0x05, 0x52, | |
77 0xf3, 0xa5, 0xde, 0xb3, 0x40, 0x6a, 0xab, 0xbe, 0x1a, 0x3e, 0x7f, 0x95,
0x3e, 0x4a, 0xfa, 0xb8, | |
78 0x4c, 0x25, 0x6f, 0x3a, 0x55, 0x5f, 0x90, 0x30, 0xaf, 0xb0, 0xb4, 0x6f,
0x7d, 0x35, 0xd4, 0xd3, | |
79 0x73, 0x9f, 0x3f, 0x0a, 0xf8, 0x77, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x98,
0x2f, 0x97, 0x3d, 0xde, | |
80 0x00, 0x00, 0x00, | |
81 } | |
OLD | NEW |