OLD | NEW |
1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
4 | 4 |
5 syntax = "proto3"; | 5 syntax = "proto3"; |
6 | 6 |
7 package internal; | 7 package internal; |
8 | 8 |
9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto"; | 9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto"; |
10 | 10 |
11 // Item is a full annotation protobuf state item. It is used to serialize and | 11 // Item is a full annotation protobuf state item. It is used to serialize and |
12 // deserialize Step and associated fetch data into memcache. | 12 // deserialize Step and associated fetch data into memcache. |
13 message CachedStep { | 13 message CachedStep { |
14 // Step is the root annotation step. | 14 // Step is the root annotation step. |
15 milo.Step step = 1; | 15 milo.Step step = 1; |
16 | 16 |
17 // Finished is true if this is the last annotation protobuf in the stream. | 17 // Finished is true if this is the last annotation protobuf in the stream. |
18 bool finished = 2; | 18 bool finished = 2; |
19 } | 19 } |
OLD | NEW |