Interface IFunctionOutput
An interface defining function output.
Namespace: MESL.SqlRace.Domain.Functions
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IFunctionOutput : IDisposable
Properties
OutputParameterIndexes
A set of parameter identifier and index which will be used to find which output data to add data to for each output parameter.
Declaration
IReadOnlyDictionary<string, int> OutputParameterIndexes { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyDictionary<System.String, System.Int32> |
OutputParametersData
A collection of MESL.SqlRace.Domain.Functions.OutputData which will be used to store the computed values per output parameter.
Declaration
IReadOnlyList<IOutputData> OutputParametersData { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<IOutputData> |
OutputParametersValues
A collection of double arrays which will be used to store the computed values per output parameter per timestamp.
Declaration
IReadOnlyList<double[]> OutputParametersValues { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<System.Double[]> |