Package org.yamcs.protobuf
Interface EditProcessorRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EditProcessorRequest,EditProcessorRequest.Builder
public interface EditProcessorRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetInstance()Yamcs instance name.com.google.protobuf.ByteStringgetInstanceBytes()Yamcs instance name.StringgetProcessor()Processor name.com.google.protobuf.ByteStringgetProcessorBytes()Processor name.com.google.protobuf.TimestampgetSeek()The time where the processing needs to jump towards.com.google.protobuf.TimestampOrBuildergetSeekOrBuilder()The time where the processing needs to jump towards.StringgetSpeed()The speed of the processor.com.google.protobuf.ByteStringgetSpeedBytes()The speed of the processor.StringgetState()The state this replay processor should be updated to.com.google.protobuf.ByteStringgetStateBytes()The state this replay processor should be updated to.booleanhasInstance()Yamcs instance name.booleanhasProcessor()Processor name.booleanhasSeek()The time where the processing needs to jump towards.booleanhasSpeed()The speed of the processor.booleanhasState()The state this replay processor should be updated to.-
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;
-
hasState
boolean hasState()
The state this replay processor should be updated to. Either ``paused`` or ``running``.
optional string state = 3;
-
getState
String getState()
The state this replay processor should be updated to. Either ``paused`` or ``running``.
optional string state = 3;
-
getStateBytes
com.google.protobuf.ByteString getStateBytes()
The state this replay processor should be updated to. Either ``paused`` or ``running``.
optional string state = 3;
-
hasSeek
boolean hasSeek()
The time where the processing needs to jump towards. Must be a date string in ISO 8601 format.
optional .google.protobuf.Timestamp seek = 4;
-
getSeek
com.google.protobuf.Timestamp getSeek()
The time where the processing needs to jump towards. Must be a date string in ISO 8601 format.
optional .google.protobuf.Timestamp seek = 4;
-
getSeekOrBuilder
com.google.protobuf.TimestampOrBuilder getSeekOrBuilder()
The time where the processing needs to jump towards. Must be a date string in ISO 8601 format.
optional .google.protobuf.Timestamp seek = 4;
-
hasSpeed
boolean hasSpeed()
The speed of the processor. One of: * ``afap`` * a speed factor relative to the original speed. Example: ``2x`` * a fixed delay value in milliseconds. Example: ``2000``
optional string speed = 5;
-
getSpeed
String getSpeed()
The speed of the processor. One of: * ``afap`` * a speed factor relative to the original speed. Example: ``2x`` * a fixed delay value in milliseconds. Example: ``2000``
optional string speed = 5;
-
getSpeedBytes
com.google.protobuf.ByteString getSpeedBytes()
The speed of the processor. One of: * ``afap`` * a speed factor relative to the original speed. Example: ``2x`` * a fixed delay value in milliseconds. Example: ``2000``
optional string speed = 5;
-
-