ObservationPublicationType

public enum ObservationPublicationType : String

Defines whether and how the observations should be automatically published from SensorSourceController.

This is used together with the samplingInterval value.

  • The observations should not be published automatically.

    Declaration

    Swift

    case none = "none"
  • The observations are advertised.

    The value of the sensor is read continuously every samplingInterval milliseconds.

    Declaration

    Swift

    case advertise = "advertise"
  • The observations are channeled.

    The value of the sensor is read continuously every samplingInterval milliseconds.

    Declaration

    Swift

    case channel = "channel"