Package org.yamcs.protobuf
Interface ReplyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Reply,Reply.Builder
public interface ReplyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExceptionMessagegetException()If set, the call was not successful.ExceptionMessageOrBuildergetExceptionOrBuilder()If set, the call was not successful.intgetReplyTo()The id of the original client message (if provided)booleanhasException()If set, the call was not successful.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getReplyTo
int getReplyTo()
The id of the original client message (if provided)
int32 reply_to = 1;
-
hasException
boolean hasException()
If set, the call was not successful.
.yamcs.api.ExceptionMessage exception = 2;
-
getException
ExceptionMessage getException()
If set, the call was not successful.
.yamcs.api.ExceptionMessage exception = 2;
-
getExceptionOrBuilder
ExceptionMessageOrBuilder getExceptionOrBuilder()
If set, the call was not successful.
.yamcs.api.ExceptionMessage exception = 2;
-
-