Direction indicates the data query order in the GetRange operation. The two Direction operations are:

  • FORWARD, which indicates that the query proceeds from the smallest to the largest primary key.

  • BACKWARD, which indicates that the query proceeds from the largest to the smallest primary key.

Enumeration value list

enum Direction {
    FORWARD = 0;
    BACKWARD = 1;
}

Related operations

GetRange