Interface IVirtualTemplate
Definition for IVirtualTemplate.
Namespace: MESL.SqlRace.Domain.VirtualParameters
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IVirtualTemplate
Properties
Inputs
Gets or sets the inputs.
Declaration
List<IVirtualInput> Inputs { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<IVirtualInput> | The inputs. |
Methods
GetValue(Int64, Double[])
Gets the value.
Declaration
double GetValue(long timestamp, double[] dataValues)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | timestamp | The current timestamp. |
System.Double[] | dataValues | The data values. |
Returns
Type | Description |
---|---|
System.Double | Returns value from the user function. |