C# 클래스 Microsoft.Azure.Devices.Applications.RemoteMonitoring.DeviceAdmin.Infrastructure.Repository.DeviceTelemetryRepository

A repository for Device telemetry data.
상속: IDeviceTelemetryRepository
파일 보기 프로젝트 열기: Azure/azure-iot-remote-monitoring 1 사용 예제들

공개 메소드들

메소드 설명
DeviceTelemetryRepository ( IConfigurationProvider configProvider, IBlobStorageClientFactory blobStorageClientFactory ) : System

Initializes a new instance of the DeviceTelemetryRepository 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.

비공개 메소드들

메소드 설명
LoadBlobTelemetryModels ( Stream stream, IList telemetryFields ) : List
LoadBlobTelemetrySummaryModels ( Stream stream, System.DateTime lastModifiedTime ) : List

메소드 상세

DeviceTelemetryRepository() 공개 메소드

Initializes a new instance of the DeviceTelemetryRepository class.
public DeviceTelemetryRepository ( IConfigurationProvider configProvider, IBlobStorageClientFactory blobStorageClientFactory ) : System
configProvider IConfigurationProvider /// The IConfigurationProvider implementation with which to initialize /// the new instance. ///
blobStorageClientFactory IBlobStorageClientFactory
리턴 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