C# Class Microsoft.Azure.Devices.Applications.RemoteMonitoring.DeviceAdmin.Infrastructure.BusinessLogic.DeviceTelemetryLogic

An IDeviceTelemetryLogic implementation that has business logic class for Device telemetry-related functionality.
Inheritance: IDeviceTelemetryLogic
Mostra file Open project: Azure/azure-iot-remote-monitoring Class Usage Examples

Public Methods

Method Description
DeviceTelemetryLogic ( IDeviceTelemetryRepository deviceTelemetryRepository ) : System

Initializes a new instance of the DeviceTelemetryLogic class.

LoadLatestDeviceTelemetryAsync ( string deviceId, IList telemetryFields, System.DateTime minTime ) : Task>

Loads the most recent Device telemetry.

LoadLatestDeviceTelemetrySummaryAsync ( string deviceId, System.DateTime minTime ) : Task

Loads the most recent DeviceTelemetrySummaryModel for a specified Device.

ProduceGetLatestDeviceAlertTime ( IEnumerable alertHistoryModels ) : DateTime?>.Func

Produces a delegate for getting the time of a specified Device's most recent alert.

Method Details

DeviceTelemetryLogic() public method

Initializes a new instance of the DeviceTelemetryLogic class.
public DeviceTelemetryLogic ( IDeviceTelemetryRepository deviceTelemetryRepository ) : System
deviceTelemetryRepository IDeviceTelemetryRepository /// The IDeviceTelemetryRepository implementation that the new /// instance will use. ///
return System

LoadLatestDeviceTelemetryAsync() public method

Loads the most recent Device telemetry.
public LoadLatestDeviceTelemetryAsync ( string deviceId, IList telemetryFields, System.DateTime minTime ) : Task>
deviceId string /// The ID of the Device for which telemetry should be returned. ///
telemetryFields IList
minTime System.DateTime /// The minimum time of record of the telemetry that should be returned. ///
return Task>

LoadLatestDeviceTelemetrySummaryAsync() public method

Loads the most recent DeviceTelemetrySummaryModel for a specified Device.
public LoadLatestDeviceTelemetrySummaryAsync ( string deviceId, System.DateTime minTime ) : Task
deviceId string /// The ID of the Device for which a telemetry summary model should be /// returned. ///
minTime System.DateTime /// If provided the the minimum time stamp of the summary data that should /// be loaded. ///
return Task

ProduceGetLatestDeviceAlertTime() public method

Produces a delegate for getting the time of a specified Device's most recent alert.
public ProduceGetLatestDeviceAlertTime ( IEnumerable alertHistoryModels ) : DateTime?>.Func
alertHistoryModels IEnumerable /// A collection of AlertHistoryItemModel, representing all alerts that /// should be considered. ///
return DateTime?>.Func