Interface ControlMessage.BlockStateChangedMsgOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ControlMessage.BlockStateChangedMsg
,ControlMessage.BlockStateChangedMsg.Builder
- Enclosing class:
- ControlMessage
public static interface ControlMessage.BlockStateChangedMsgOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBlockId()
required string blockId = 2;
com.google.protobuf.ByteString
getBlockIdBytes()
required string blockId = 2;
java.lang.String
getExecutorId()
required string executorId = 1;
com.google.protobuf.ByteString
getExecutorIdBytes()
required string executorId = 1;
java.lang.String
getLocation()
The location of the block (e.g., executor id or remote store).com.google.protobuf.ByteString
getLocationBytes()
The location of the block (e.g., executor id or remote store).ControlMessage.BlockStateFromExecutor
getState()
required .protobuf.BlockStateFromExecutor state = 3;
boolean
hasBlockId()
required string blockId = 2;
boolean
hasExecutorId()
required string executorId = 1;
boolean
hasLocation()
The location of the block (e.g., executor id or remote store).boolean
hasState()
required .protobuf.BlockStateFromExecutor state = 3;
-
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.
-
hasBlockId
boolean hasBlockId()
required string blockId = 2;
- Returns:
- Whether the blockId field is set.
-
getBlockId
java.lang.String getBlockId()
required string blockId = 2;
- Returns:
- The blockId.
-
getBlockIdBytes
com.google.protobuf.ByteString getBlockIdBytes()
required string blockId = 2;
- Returns:
- The bytes for blockId.
-
hasState
boolean hasState()
required .protobuf.BlockStateFromExecutor state = 3;
- Returns:
- Whether the state field is set.
-
getState
ControlMessage.BlockStateFromExecutor getState()
required .protobuf.BlockStateFromExecutor state = 3;
- Returns:
- The state.
-
hasLocation
boolean hasLocation()
The location of the block (e.g., executor id or remote store).
required string location = 4;
- Returns:
- Whether the location field is set.
-
getLocation
java.lang.String getLocation()
The location of the block (e.g., executor id or remote store).
required string location = 4;
- Returns:
- The location.
-
getLocationBytes
com.google.protobuf.ByteString getLocationBytes()
The location of the block (e.g., executor id or remote store).
required string location = 4;
- Returns:
- The bytes for location.
-
-