Interface BuildEventStreamProtos.BuildMetrics.WorkerMetricsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.BuildMetrics.WorkerMetrics,BuildEventStreamProtos.BuildMetrics.WorkerMetrics.Builder
- Enclosing class:
- BuildEventStreamProtos.BuildMetrics
public static interface BuildEventStreamProtos.BuildMetrics.WorkerMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsMeasurable()Shows is worker stats measured at the end of invocation.booleangetIsMultiplex()Multiplex or singleplex worker.booleangetIsSandbox()Using worker sandbox file system or not.java.lang.StringgetMnemonic()Mnemonic of running worker.com.google.protobuf.ByteStringgetMnemonicBytes()Mnemonic of running worker.intgetProcessId()Worker process id.intgetWorkerId()Unique id of worker.BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStatsgetWorkerStats(int index)Combined workers statistics.intgetWorkerStatsCount()Combined workers statistics.java.util.List<BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStats>getWorkerStatsList()Combined workers statistics.BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStatsOrBuildergetWorkerStatsOrBuilder(int index)Combined workers statistics.java.util.List<? extends BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStatsOrBuilder>getWorkerStatsOrBuilderList()Combined workers statistics.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getWorkerId
int getWorkerId()
Unique id of worker.
int32 worker_id = 1;- Returns:
- The workerId.
-
getProcessId
int getProcessId()
Worker process id. If there is no process for worker, equals to zero.
uint32 process_id = 2;- Returns:
- The processId.
-
getMnemonic
java.lang.String getMnemonic()
Mnemonic of running worker.
string mnemonic = 3;- Returns:
- The mnemonic.
-
getMnemonicBytes
com.google.protobuf.ByteString getMnemonicBytes()
Mnemonic of running worker.
string mnemonic = 3;- Returns:
- The bytes for mnemonic.
-
getIsMultiplex
boolean getIsMultiplex()
Multiplex or singleplex worker.
bool is_multiplex = 4;- Returns:
- The isMultiplex.
-
getIsSandbox
boolean getIsSandbox()
Using worker sandbox file system or not.
bool is_sandbox = 5;- Returns:
- The isSandbox.
-
getIsMeasurable
boolean getIsMeasurable()
Shows is worker stats measured at the end of invocation.
bool is_measurable = 6;- Returns:
- The isMeasurable.
-
getWorkerStatsList
java.util.List<BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStats> getWorkerStatsList()
Combined workers statistics.
repeated .build_event_stream.BuildMetrics.WorkerMetrics.WorkerStats worker_stats = 7;
-
getWorkerStats
BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStats getWorkerStats(int index)
Combined workers statistics.
repeated .build_event_stream.BuildMetrics.WorkerMetrics.WorkerStats worker_stats = 7;
-
getWorkerStatsCount
int getWorkerStatsCount()
Combined workers statistics.
repeated .build_event_stream.BuildMetrics.WorkerMetrics.WorkerStats worker_stats = 7;
-
getWorkerStatsOrBuilderList
java.util.List<? extends BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStatsOrBuilder> getWorkerStatsOrBuilderList()
Combined workers statistics.
repeated .build_event_stream.BuildMetrics.WorkerMetrics.WorkerStats worker_stats = 7;
-
getWorkerStatsOrBuilder
BuildEventStreamProtos.BuildMetrics.WorkerMetrics.WorkerStatsOrBuilder getWorkerStatsOrBuilder(int index)
Combined workers statistics.
repeated .build_event_stream.BuildMetrics.WorkerMetrics.WorkerStats worker_stats = 7;
-
-