Specifies the scan direction for the GetRange operation.
Enumeration values
FORWARD: Scans rows in ascending order of primary keys.
BACKWARD: Scans rows in descending order of primary keys.
enum Direction {
FORWARD = 0;
BACKWARD = 1;
}
Specifies the scan direction for the GetRange operation.
FORWARD: Scans rows in ascending order of primary keys.
BACKWARD: Scans rows in descending order of primary keys.
enum Direction {
FORWARD = 0;
BACKWARD = 1;
}