1010Data Insights Platform .NET SDK
|
An interface for download policies, which is equivalent to window size. The window is the number of rows of data that buffered when the SDK requests results. More...
Public Member Functions | |
int | NextWindow (long row) |
Report how long of a window to download during enumeration. More... | |
void | ForRow (long row, ref long offset, ref int rows) |
Describes the rows to download when subscripting a specific row. More... | |
An interface for download policies, which is equivalent to window size. The window is the number of rows of data that buffered when the SDK requests results.
int TenTenSDK.IDownloadPolicy.NextWindow | ( | long | row | ) |
Report how long of a window to download during enumeration.
row | The row to be fetched |
Implemented in TenTenSDK.BasicPolicy.
void TenTenSDK.IDownloadPolicy.ForRow | ( | long | row, |
ref long | offset, | ||
ref int | rows | ||
) |
Describes the rows to download when subscripting a specific row.
row | The row that is being subscripted |
offset | Current offset; should be changed so that offset <= row. |
rows | Current number of rows; should be changed so that row < offset+rows. |
Implemented in TenTenSDK.BasicPolicy.