Interface ControlMessage.ExecutorFailedMsgOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ControlMessage.ExecutorFailedMsg
,ControlMessage.ExecutorFailedMsg.Builder
- Enclosing class:
- ControlMessage
public static interface ControlMessage.ExecutorFailedMsgOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getException()
required bytes exception = 2;
java.lang.String
getExecutorId()
required string executorId = 1;
com.google.protobuf.ByteString
getExecutorIdBytes()
required string executorId = 1;
boolean
hasException()
required bytes exception = 2;
boolean
hasExecutorId()
required string executorId = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasExecutorId
boolean hasExecutorId()
required string executorId = 1;
- Returns:
- Whether the executorId field is set.
-
getExecutorId
java.lang.String getExecutorId()
required string executorId = 1;
- Returns:
- The executorId.
-
getExecutorIdBytes
com.google.protobuf.ByteString getExecutorIdBytes()
required string executorId = 1;
- Returns:
- The bytes for executorId.
-
hasException
boolean hasException()
required bytes exception = 2;
- Returns:
- Whether the exception field is set.
-
getException
com.google.protobuf.ByteString getException()
required bytes exception = 2;
- Returns:
- The exception.
-
-