|
CompactMeasurement(SignalIndexCache, Boolean, Int64, Int32, Boolean) Constructor
|
Namespace: GSF.TimeSeries.TransportAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax public CompactMeasurement(
SignalIndexCache signalIndexCache,
bool includeTime = true,
long[] baseTimeOffsets = null,
int timeIndex = 0,
bool useMillisecondResolution = false
)
Public Sub New (
signalIndexCache As SignalIndexCache,
Optional includeTime As Boolean = true,
Optional baseTimeOffsets As Long() = Nothing,
Optional timeIndex As Integer = 0,
Optional useMillisecondResolution As Boolean = false
)
public:
CompactMeasurement(
SignalIndexCache^ signalIndexCache,
bool includeTime = true,
array<long long>^ baseTimeOffsets = nullptr,
int timeIndex = 0,
bool useMillisecondResolution = false
)
new :
signalIndexCache : SignalIndexCache *
?includeTime : bool *
?baseTimeOffsets : int64[] *
?timeIndex : int *
?useMillisecondResolution : bool
(* Defaults:
let _includeTime = defaultArg includeTime true
let _baseTimeOffsets = defaultArg baseTimeOffsets null
let _timeIndex = defaultArg timeIndex 0
let _useMillisecondResolution = defaultArg useMillisecondResolution false
*)
-> CompactMeasurement
GSF.TimeSeries.Transport.CompactMeasurement = function(signalIndexCache, includeTime, baseTimeOffsets, timeIndex, useMillisecondResolution);
View SourceParameters
- signalIndexCache SignalIndexCache
- Signal index cache used to serialize or deserialize runtime information.
- includeTime Boolean (Optional)
- Set to true to include time in serialized packet; otherwise false.
- baseTimeOffsets Int64 (Optional)
- Base time offset array - set to null to use full fidelity measurement time.
- timeIndex Int32 (Optional)
- Time index to use for base offset.
- useMillisecondResolution Boolean (Optional)
- Flag that determines if millisecond resolution is in use for this serialization.
See Also