C# Класс Microsoft.Azure.Devices.Applications.RemoteMonitoring.DeviceAdmin.Infrastructure.BusinessLogic.DeviceTelemetryLogic

An IDeviceTelemetryLogic implementation that has business logic class for Device telemetry-related functionality.
Наследование: IDeviceTelemetryLogic
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

DeviceTelemetryLogic() публичный Метод

Initializes a new instance of the DeviceTelemetryLogic class.
public DeviceTelemetryLogic ( IDeviceTelemetryRepository deviceTelemetryRepository ) : System
deviceTelemetryRepository IDeviceTelemetryRepository /// The IDeviceTelemetryRepository implementation that the new /// instance will use. ///
Результат System

LoadLatestDeviceTelemetryAsync() публичный Метод

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. ///
Результат Task>

LoadLatestDeviceTelemetrySummaryAsync() публичный Метод

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. ///
Результат Task

ProduceGetLatestDeviceAlertTime() публичный Метод

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. ///
Результат DateTime?>.Func