Skip to content

OcaInt16Sensor#

This document describes the controller implementation of OcaInt16Sensor. This class is documented in the AES70 standard as:

16-bit signed integer sensor


Overview#

Class Declaration#

namespace aes70::controller
{
  class OcaInt16Sensor : public OcaBasicSensor
  {
  public:
    OcaInt16Sensor(std::shared_ptr<connection> connection,
            uin32_t object_number);
    OcaInt16Sensor(const OcaInt16Sensor &o);

    // Control Methods
    // Calls GetReading and calls on_result or on_failure
    void GetReading(auto on_result, failure_callback on_failure);

    // Observing Properties
    subscription observeReading(auto callback, failure_callback on_failure);

    // Property Changed Subscriptions
    subscription OnReadingChanged(auto callback, failure_callback on_failure);
  };
}

Methods#

GetReading#

void GetReading(auto on_result, failure_callback on_failure)

Calls the method GetReading in the remote device.

Parameters:#

  • auto on_result: A callable (e.g. a lambda) with the following arguments:
    • OcaInt16 Reading
    • OcaInt16 minReading
    • OcaInt16 maxReading
  • failure_callback on_failure: A callback which is called on error.

observeReading#

subscription observeReading(auto callback, failure_callback on_failure)

Fetches the remote property Reading and subscribes for modifications. The callback is called with the initial values of Reading and whenever it changes.

Parameters:#

  • auto callback: A callable (e.g. a lambda) with one argument: OcaInt16 Reading
  • failure_callback on_failure: A callback which is called on error.

OnReadingChanged#

subscription OnReadingChanged(auto callback, failure_callback on_failure)

Parameters#

  • auto callback: A callable (e.g. a lambda) with one argument: OcaInt16 Reading
  • failure_callback on_failure: A callback which is called on error.