[This is preliminary documentation and is subject to change.]
Records a snapshot of all longs converted into TDatum. The TDatum must have a public .ctor(string, long) or runtime exception is thrown
(this is because C# does not have a contract/constraint for parameterized cosntructors)
Namespace: NFX.CollectionsAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public void SnapshotAllLongsInto<TDatum>(
Nullable<long> exchange = null,
IInstrumentation instrumentation = null
)
where TDatum : Datum
public void SnapshotAllLongsInto<TDatum>(
Nullable<long> exchange = null,
IInstrumentation instrumentation = null
)
where TDatum : Datum
Public Sub SnapshotAllLongsInto(Of TDatum As Datum) (
Optional exchange As Nullable(Of Long) = Nothing,
Optional instrumentation As IInstrumentation = Nothing
)
Public Sub SnapshotAllLongsInto(Of TDatum As Datum) (
Optional exchange As Nullable(Of Long) = Nothing,
Optional instrumentation As IInstrumentation = Nothing
)
public:
generic<typename TDatum>
where TDatum : Datum
void SnapshotAllLongsInto(
Nullable<long long> exchange = nullptr,
IInstrumentation^ instrumentation = nullptr
)
public:
generic<typename TDatum>
where TDatum : Datum
void SnapshotAllLongsInto(
Nullable<long long> exchange = nullptr,
IInstrumentation^ instrumentation = nullptr
)
member SnapshotAllLongsInto :
?exchange : Nullable<int64> *
?instrumentation : IInstrumentation
(* Defaults:
let _exchange = defaultArg exchange null
let _instrumentation = defaultArg instrumentation null
*)
-> unit when 'TDatum : Datum
member SnapshotAllLongsInto :
?exchange : Nullable<int64> *
?instrumentation : IInstrumentation
(* Defaults:
let _exchange = defaultArg exchange null
let _instrumentation = defaultArg instrumentation null
*)
-> unit when 'TDatum : Datum
- TDatum