Метод | Описание | |
---|---|---|
Backward ( ) : |
Iteration will proceed backwards
|
|
Count ( uint count ) : |
Specify the count parameter for iteration Iteration will stop after count elements. |
|
EndKey ( byte endKey ) : |
Specify the end key parameter for iteration Iteration will stop at end key, or the first key greater than end key. |
|
Granularity ( uint granularity ) : |
Specify the granularity parameter for iteration Iteration will receive data in batches of granularity size. |
|
Prefix ( byte prefix ) : |
Specify the prefix parameter for iteration. Only keys starting with prefix will be returned by the iteration. |
|
StartKey ( byte startKey ) : |
Specify the start key parameter for iteration. Iteration will start at start key, or the first key greater than start key. |
public Count ( uint count ) : |
||
count | uint | The count parameter. |
Результат |
public EndKey ( byte endKey ) : |
||
endKey | byte | The end key parameter as a byte[]. |
Результат |
public Granularity ( uint granularity ) : |
||
granularity | uint | The granularity parameter. |
Результат |
public Prefix ( byte prefix ) : |
||
prefix | byte | The prefix parameter as a byte[]. |
Результат |
public StartKey ( byte startKey ) : |
||
startKey | byte | The start key parameter as a byte[]. |
Результат |