Interface BuildEventStreamProtos.ProgressOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.Progress,BuildEventStreamProtos.Progress.Builder
- Enclosing class:
- BuildEventStreamProtos
public static interface BuildEventStreamProtos.ProgressOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionThe next chunk of stderr that bazel produced since the last progress event or the beginning of the build.com.google.protobuf.ByteStringThe next chunk of stderr that bazel produced since the last progress event or the beginning of the build.The next chunk of stdout that bazel produced since the last progress event or the beginning of the build.com.google.protobuf.ByteStringThe next chunk of stdout that bazel produced since the last progress event or the beginning of the build.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getStdout
String getStdout()The next chunk of stdout that bazel produced since the last progress event or the beginning of the build. Consumers that need to reason about the relative order of stdout and stderr can assume that stderr has been emitted before stdout if both are present, on a best-effort basis.
string stdout = 1;- Returns:
- The stdout.
-
getStdoutBytes
com.google.protobuf.ByteString getStdoutBytes()The next chunk of stdout that bazel produced since the last progress event or the beginning of the build. Consumers that need to reason about the relative order of stdout and stderr can assume that stderr has been emitted before stdout if both are present, on a best-effort basis.
string stdout = 1;- Returns:
- The bytes for stdout.
-
getStderr
String getStderr()The next chunk of stderr that bazel produced since the last progress event or the beginning of the build. Consumers that need to reason about the relative order of stdout and stderr can assume that stderr has been emitted before stdout if both are present, on a best-effort basis.
string stderr = 2;- Returns:
- The stderr.
-
getStderrBytes
com.google.protobuf.ByteString getStderrBytes()The next chunk of stderr that bazel produced since the last progress event or the beginning of the build. Consumers that need to reason about the relative order of stdout and stderr can assume that stderr has been emitted before stdout if both are present, on a best-effort basis.
string stderr = 2;- Returns:
- The bytes for stderr.
-