Package org.yamcs.protobuf
Interface SubscribeParametersRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SubscribeParametersRequest,SubscribeParametersRequest.Builder
public interface SubscribeParametersRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAbortOnInvalid()Send an error message if any parameter is invalid.SubscribeParametersRequest.ActiongetAction()How to interpret the submitted parameter ids.Yamcs.NamedObjectIdgetId(int index)repeated .yamcs.protobuf.NamedObjectId id = 3;intgetIdCount()repeated .yamcs.protobuf.NamedObjectId id = 3;List<Yamcs.NamedObjectId>getIdList()repeated .yamcs.protobuf.NamedObjectId id = 3;Yamcs.NamedObjectIdOrBuildergetIdOrBuilder(int index)repeated .yamcs.protobuf.NamedObjectId id = 3;List<? extends Yamcs.NamedObjectIdOrBuilder>getIdOrBuilderList()repeated .yamcs.protobuf.NamedObjectId id = 3;StringgetInstance()Yamcs instance name.com.google.protobuf.ByteStringgetInstanceBytes()Yamcs instance name.StringgetProcessor()Processor name.com.google.protobuf.ByteStringgetProcessorBytes()Processor name.booleangetSendFromCache()If available, send immediately the last cached value of each subscribed parameter.booleangetUpdateOnExpiration()Send parameter updates when parameters expire.booleanhasAbortOnInvalid()Send an error message if any parameter is invalid.booleanhasAction()How to interpret the submitted parameter ids.booleanhasInstance()Yamcs instance name.booleanhasProcessor()Processor name.booleanhasSendFromCache()If available, send immediately the last cached value of each subscribed parameter.booleanhasUpdateOnExpiration()Send parameter updates when parameters expire.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInstance
boolean hasInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstance
String getInstance()
Yamcs instance name.
optional string instance = 1;
-
getInstanceBytes
com.google.protobuf.ByteString getInstanceBytes()
Yamcs instance name.
optional string instance = 1;
-
hasProcessor
boolean hasProcessor()
Processor name.
optional string processor = 2;
-
getProcessor
String getProcessor()
Processor name.
optional string processor = 2;
-
getProcessorBytes
com.google.protobuf.ByteString getProcessorBytes()
Processor name.
optional string processor = 2;
-
getIdList
List<Yamcs.NamedObjectId> getIdList()
repeated .yamcs.protobuf.NamedObjectId id = 3;
-
getId
Yamcs.NamedObjectId getId(int index)
repeated .yamcs.protobuf.NamedObjectId id = 3;
-
getIdCount
int getIdCount()
repeated .yamcs.protobuf.NamedObjectId id = 3;
-
getIdOrBuilderList
List<? extends Yamcs.NamedObjectIdOrBuilder> getIdOrBuilderList()
repeated .yamcs.protobuf.NamedObjectId id = 3;
-
getIdOrBuilder
Yamcs.NamedObjectIdOrBuilder getIdOrBuilder(int index)
repeated .yamcs.protobuf.NamedObjectId id = 3;
-
hasAbortOnInvalid
boolean hasAbortOnInvalid()
Send an error message if any parameter is invalid. Default: true
optional bool abortOnInvalid = 4;
-
getAbortOnInvalid
boolean getAbortOnInvalid()
Send an error message if any parameter is invalid. Default: true
optional bool abortOnInvalid = 4;
-
hasUpdateOnExpiration
boolean hasUpdateOnExpiration()
Send parameter updates when parameters expire. The update will have the same value and timestamp like the preceding update, but with acquisition status set to EXPIRED (instead of ACQUIRED) Default: false
optional bool updateOnExpiration = 5;
-
getUpdateOnExpiration
boolean getUpdateOnExpiration()
Send parameter updates when parameters expire. The update will have the same value and timestamp like the preceding update, but with acquisition status set to EXPIRED (instead of ACQUIRED) Default: false
optional bool updateOnExpiration = 5;
-
hasSendFromCache
boolean hasSendFromCache()
If available, send immediately the last cached value of each subscribed parameter. Default: true
optional bool sendFromCache = 6;
-
getSendFromCache
boolean getSendFromCache()
If available, send immediately the last cached value of each subscribed parameter. Default: true
optional bool sendFromCache = 6;
-
hasAction
boolean hasAction()
How to interpret the submitted parameter ids. Default is to replace an exising subscription with the newly submitted list.
optional .yamcs.protobuf.processing.SubscribeParametersRequest.Action action = 7;
-
getAction
SubscribeParametersRequest.Action getAction()
How to interpret the submitted parameter ids. Default is to replace an exising subscription with the newly submitted list.
optional .yamcs.protobuf.processing.SubscribeParametersRequest.Action action = 7;
-
-