Package org.yamcs.protobuf
Interface ServerMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServerMessage,ServerMessage.Builder
public interface ServerMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCall()If applicable, the call associated with this messagecom.google.protobuf.AnygetData().google.protobuf.Any data = 4;com.google.protobuf.AnyOrBuildergetDataOrBuilder().google.protobuf.Any data = 4;intgetSeq()Sequence counter (scoped to the call)StringgetType()Message type.com.google.protobuf.ByteStringgetTypeBytes()Message type.booleanhasData().google.protobuf.Any data = 4;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getType
String getType()
Message type. Typically the name of the subscribed topic, or a built-in like "reply".
string type = 1;
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
Message type. Typically the name of the subscribed topic, or a built-in like "reply".
string type = 1;
-
getCall
int getCall()
If applicable, the call associated with this message
int32 call = 2;
-
getSeq
int getSeq()
Sequence counter (scoped to the call)
int32 seq = 3;
-
hasData
boolean hasData()
.google.protobuf.Any data = 4;
-
getData
com.google.protobuf.Any getData()
.google.protobuf.Any data = 4;
-
getDataOrBuilder
com.google.protobuf.AnyOrBuilder getDataOrBuilder()
.google.protobuf.Any data = 4;
-
-