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

Side by Side Diff: milo/appengine/logdog/internal/stream.proto

Issue 2944983003: [milo] {buildbucket,buildbot,swarming,logdog} -> backends/*. (Closed)
Patch Set: Created 3 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file.
4
5 syntax = "proto3";
6
7 package internal;
8
9 import "github.com/luci/luci-go/common/proto/milo/annotations.proto";
10
11 // Item is a full annotation protobuf state item. It is used to serialize and
12 // deserialize Step and associated fetch data into memcache.
13 message CachedStep {
14 // Step is the root annotation step.
15 milo.Step step = 1;
16
17 // Finished is true if this is the last annotation protobuf in the stream.
18 bool finished = 2;
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698