Interface IDeferredDataResult
Interface for the deferred data result.
Namespace: MESL.SqlRace.Domain.Infrastructure.DataPipeline
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IDeferredDataResult
Properties
DataResults
A collection of IDataResult.
Declaration
IEnumerable<KeyValuePair<string, List<IDataResult>>> DataResults { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, System.Collections.Generic.List<IDataResult>>> |
TotalSamplesGenerated
Gets the total samples generated.
Declaration
int TotalSamplesGenerated { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The total samples generated. |
Methods
GetDataResultFor(String)
Gets the data result for.
Declaration
IReadOnlyList<IDataResult> GetDataResultFor(string parameterId)
Parameters
Type | Name | Description |
---|---|---|
System.String | parameterId | The parameter identifier. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<IDataResult> | List of data results associated with the parameter. |