intelligentplant / AppStoreConnect.Adapters

Allows Intelligent Plant App Store Connect to query 3rd party systems
https://appstore.intelligentplant.com
MIT License
0 stars 0 forks source link

Update iteration of FASTER records in LogSizeTracker #369

Closed wazzamatazz closed 7 months ago

wazzamatazz commented 7 months ago

Calling IFasterScanIterator<Key, Value>.GetNext(out RecordInfo, out Key, out Value) throws a NotImplementedException when the FASTER.core.VariableLengthBlittableScanIterator implementation is used.

To work around this, we now call IFasterScanIterator<Key, Value>.GetNext(out RecordInfo) and then explicitly call the GetKey() and GetValue() methods on the iterator.