Interface StopAirflowCommandResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StopAirflowCommandResponse,StopAirflowCommandResponse.Builder
public interface StopAirflowCommandResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetIsDone()Whether the execution is still running.StringgetOutput(int index)Output message from stopping execution request.com.google.protobuf.ByteStringgetOutputBytes(int index)Output message from stopping execution request.intgetOutputCount()Output message from stopping execution request.List<String>getOutputList()Output message from stopping execution request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getIsDone
boolean getIsDone()
Whether the execution is still running.
bool is_done = 1;- Returns:
- The isDone.
-
getOutputList
List<String> getOutputList()
Output message from stopping execution request.
repeated string output = 2;- Returns:
- A list containing the output.
-
getOutputCount
int getOutputCount()
Output message from stopping execution request.
repeated string output = 2;- Returns:
- The count of output.
-
getOutput
String getOutput(int index)
Output message from stopping execution request.
repeated string output = 2;- Parameters:
index- The index of the element to return.- Returns:
- The output at the given index.
-
getOutputBytes
com.google.protobuf.ByteString getOutputBytes(int index)
Output message from stopping execution request.
repeated string output = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the output at the given index.
-
-