Interface ControlMessage.LaunchDAGMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ControlMessage.LaunchDAGMessage
,ControlMessage.LaunchDAGMessage.Builder
- Enclosing class:
- ControlMessage
public static interface ControlMessage.LaunchDAGMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getBroadcastVars()
optional bytes broadcastVars = 2;
java.lang.String
getDag()
required string dag = 1;
com.google.protobuf.ByteString
getDagBytes()
required string dag = 1;
boolean
hasBroadcastVars()
optional bytes broadcastVars = 2;
boolean
hasDag()
required string dag = 1;
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasDag
boolean hasDag()
required string dag = 1;
- Returns:
- Whether the dag field is set.
-
getDag
java.lang.String getDag()
required string dag = 1;
- Returns:
- The dag.
-
getDagBytes
com.google.protobuf.ByteString getDagBytes()
required string dag = 1;
- Returns:
- The bytes for dag.
-
hasBroadcastVars
boolean hasBroadcastVars()
optional bytes broadcastVars = 2;
- Returns:
- Whether the broadcastVars field is set.
-
getBroadcastVars
com.google.protobuf.ByteString getBroadcastVars()
optional bytes broadcastVars = 2;
- Returns:
- The broadcastVars.
-
-