MCPcopy Index your code
hub / github.com/OpenTSDB/asynchbase / setReversed

Method setReversed

src/Scanner.java:232–235  ·  view source on GitHub ↗

Specifies if the scan will be in reverse or not @param reversed Indication of scan direction. If this is not invoked, scanning will default to not being reversed. In a reversed scan, the first Scanner opened is opened on the region that the Scanner start key is in (the same as forward scan). But su

(boolean reversed)

Source from the content-addressed store, hash-verified

230 *
231 */
232 public void setReversed(boolean reversed){
233 checkScanningNotStarted();
234 is_reversed = reversed;
235 }
236
237 /**
238 * Returns boolean indicating if this is the first scanner opened on

Calls 1