Interface CommandOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Command,Command.Builder
public interface CommandOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetArgs(int index) Data content in command.intData content in command.Data content in command.getArgsOrBuilder(int index) Data content in command.List<? extends KeyStringValuePairOrBuilder>Data content in command.Use command name to distinguish different data type.com.google.protobuf.ByteStringUse command name to distinguish different data type.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getCommand
String getCommand()Use command name to distinguish different data type.
string command = 1;- Returns:
- The command.
-
getCommandBytes
com.google.protobuf.ByteString getCommandBytes()Use command name to distinguish different data type.
string command = 1;- Returns:
- The bytes for command.
-
getArgsList
List<KeyStringValuePair> getArgsList()Data content in command. The value of content needs to be serialized as string for transmission. Basic data type: convert as string. The list of basic data: multiple data are split by ",". Complex data: serialize string through json.
repeated .skywalking.v3.KeyStringValuePair args = 2; -
getArgs
Data content in command. The value of content needs to be serialized as string for transmission. Basic data type: convert as string. The list of basic data: multiple data are split by ",". Complex data: serialize string through json.
repeated .skywalking.v3.KeyStringValuePair args = 2; -
getArgsCount
int getArgsCount()Data content in command. The value of content needs to be serialized as string for transmission. Basic data type: convert as string. The list of basic data: multiple data are split by ",". Complex data: serialize string through json.
repeated .skywalking.v3.KeyStringValuePair args = 2; -
getArgsOrBuilderList
List<? extends KeyStringValuePairOrBuilder> getArgsOrBuilderList()Data content in command. The value of content needs to be serialized as string for transmission. Basic data type: convert as string. The list of basic data: multiple data are split by ",". Complex data: serialize string through json.
repeated .skywalking.v3.KeyStringValuePair args = 2; -
getArgsOrBuilder
Data content in command. The value of content needs to be serialized as string for transmission. Basic data type: convert as string. The list of basic data: multiple data are split by ",". Complex data: serialize string through json.
repeated .skywalking.v3.KeyStringValuePair args = 2;
-