Direction

更新时间:
复制 MD 格式

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;
}

Related operations

GetRange