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
      String getInstance()
      Yamcs instance name.
      com.google.protobuf.ByteString getInstanceBytes()
      Yamcs instance name.
      String getProcessor()
      Processor name.
      com.google.protobuf.ByteString getProcessorBytes()
      Processor name.
      com.google.protobuf.Timestamp getSeek()
      The time where the processing needs to jump towards.
      com.google.protobuf.TimestampOrBuilder getSeekOrBuilder()
      The time where the processing needs to jump towards.
      String getSpeed()
      The speed of the processor.
      com.google.protobuf.ByteString getSpeedBytes()
      The speed of the processor.
      String getState()
      The state this replay processor should be updated to.
      com.google.protobuf.ByteString getStateBytes()
      The state this replay processor should be updated to.
      boolean hasInstance()
      Yamcs instance name.
      boolean hasProcessor()
      Processor name.
      boolean hasSeek()
      The time where the processing needs to jump towards.
      boolean hasSpeed()
      The speed of the processor.
      boolean hasState()
      The state this replay processor should be updated to.
      • 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 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;