Show / Hide Table of Contents

Class DataResult

Data result for bringing data back as deferred data requests.

Inheritance
System.Object
DataResult
Implements
IDataResult
Namespace: MESL.SqlRace.Domain.Infrastructure.DataPipeline
Assembly: MESL.SqlRace.Domain.dll
Syntax
public sealed class DataResult : Object, IDataResult

Constructors

DataResult(UInt32, Byte[], Int64[])

Constructor for a DataResult.

Declaration
public DataResult(uint channelId, byte[] data, long[] timestamps)
Parameters
Type Name Description
System.UInt32 channelId

The channel Id which the data result is for.

System.Byte[] data

The data associated with this result.

System.Int64[] timestamps

The timestamps for the data.

Properties

ChannelId

The channel Id that this request is for.

Declaration
public uint ChannelId { get; }
Property Value
Type Description
System.UInt32

Data

The data for this result.

Declaration
public byte[] Data { get; }
Property Value
Type Description
System.Byte[]

Timestamps

The timestamps of the data for this result.

Declaration
public long[] Timestamps { get; }
Property Value
Type Description
System.Int64[]

Implements

IDataResult
Back to top Generated by DocFX