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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetStderr()The next chunk of stderr that bazel produced since the last progress event or the beginning of the build.com.google.protobuf.ByteStringgetStderrBytes()The next chunk of stderr that bazel produced since the last progress event or the beginning of the build.java.lang.StringgetStdout()The next chunk of stdout that bazel produced since the last progress event or the beginning of the build.com.google.protobuf.ByteStringgetStdoutBytes()The 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.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStdout
java.lang.String getStdout()
The next chunk of stdout that bazel produced since the last progress event or the beginning of the build.
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.
string stdout = 1;- Returns:
- The bytes for stdout.
-
getStderr
java.lang.String getStderr()
The next chunk of stderr that bazel produced since the last progress event or the beginning of the build.
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.
string stderr = 2;- Returns:
- The bytes for stderr.
-
-