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

    Modifier and Type
    Method
    Description
    Yamcs instance name.
    com.google.protobuf.ByteString
    Yamcs instance name.
    boolean
    Continue replaying from ``start`` after having reached ``stop``.
    Processor name.
    com.google.protobuf.ByteString
    Processor name.
    com.google.protobuf.Timestamp
    The time where the processing needs to jump towards.
    com.google.protobuf.TimestampOrBuilder
    The time where the processing needs to jump towards.
    The speed of the processor.
    com.google.protobuf.ByteString
    The speed of the processor.
    com.google.protobuf.Timestamp
    New start time
    com.google.protobuf.TimestampOrBuilder
    New start time
    The state this replay processor should be updated to.
    com.google.protobuf.ByteString
    The state this replay processor should be updated to.
    com.google.protobuf.Timestamp
    New stop time
    com.google.protobuf.TimestampOrBuilder
    New stop time
    boolean
    Yamcs instance name.
    boolean
    Continue replaying from ``start`` after having reached ``stop``.
    boolean
    Processor name.
    boolean
    The time where the processing needs to jump towards.
    boolean
    The speed of the processor.
    boolean
    New start time
    boolean
    The state this replay processor should be updated to.
    boolean
    New stop time

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasInstance

      boolean hasInstance()
       Yamcs instance name.
       
      optional string instance = 1;
      Returns:
      Whether the instance field is set.
    • getInstance

      String getInstance()
       Yamcs instance name.
       
      optional string instance = 1;
      Returns:
      The instance.
    • getInstanceBytes

      com.google.protobuf.ByteString getInstanceBytes()
       Yamcs instance name.
       
      optional string instance = 1;
      Returns:
      The bytes for instance.
    • hasProcessor

      boolean hasProcessor()
       Processor name.
       
      optional string processor = 2;
      Returns:
      Whether the processor field is set.
    • getProcessor

      String getProcessor()
       Processor name.
       
      optional string processor = 2;
      Returns:
      The processor.
    • getProcessorBytes

      com.google.protobuf.ByteString getProcessorBytes()
       Processor name.
       
      optional string processor = 2;
      Returns:
      The bytes for processor.
    • hasState

      boolean hasState()
       The state this replay processor should be updated to. Either ``paused`` or
       ``running``.
       
      optional string state = 3;
      Returns:
      Whether the state field is set.
    • getState

      String getState()
       The state this replay processor should be updated to. Either ``paused`` or
       ``running``.
       
      optional string state = 3;
      Returns:
      The state.
    • getStateBytes

      com.google.protobuf.ByteString getStateBytes()
       The state this replay processor should be updated to. Either ``paused`` or
       ``running``.
       
      optional string state = 3;
      Returns:
      The bytes for state.
    • 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;
      Returns:
      Whether the seek field is set.
    • 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;
      Returns:
      The seek.
    • 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;
      Returns:
      Whether the speed field is set.
    • 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;
      Returns:
      The speed.
    • 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;
      Returns:
      The bytes for speed.
    • hasStart

      boolean hasStart()
       New start time
       
      optional .google.protobuf.Timestamp start = 6;
      Returns:
      Whether the start field is set.
    • getStart

      com.google.protobuf.Timestamp getStart()
       New start time
       
      optional .google.protobuf.Timestamp start = 6;
      Returns:
      The start.
    • getStartOrBuilder

      com.google.protobuf.TimestampOrBuilder getStartOrBuilder()
       New start time
       
      optional .google.protobuf.Timestamp start = 6;
    • hasStop

      boolean hasStop()
       New stop time
       
      optional .google.protobuf.Timestamp stop = 7;
      Returns:
      Whether the stop field is set.
    • getStop

      com.google.protobuf.Timestamp getStop()
       New stop time
       
      optional .google.protobuf.Timestamp stop = 7;
      Returns:
      The stop.
    • getStopOrBuilder

      com.google.protobuf.TimestampOrBuilder getStopOrBuilder()
       New stop time
       
      optional .google.protobuf.Timestamp stop = 7;
    • hasLoop

      boolean hasLoop()
       Continue replaying from ``start`` after having reached ``stop``.
       
      optional bool loop = 8;
      Returns:
      Whether the loop field is set.
    • getLoop

      boolean getLoop()
       Continue replaying from ``start`` after having reached ``stop``.
       
      optional bool loop = 8;
      Returns:
      The loop.