MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / setStopKey

Method setStopKey

src/Scanner.java:285–289  ·  view source on GitHub ↗

Specifies up to which row key to scan (exclusive). @param stop_key The row key to scan up to. If you don't invoke this method, or if the array is empty (stop_key.length == 0), every row up to and including the last one will be scanned. This byte array will NOT be copied. @t

(final byte[] stop_key)

Source from the content-addressed store, hash-verified

283 * @throws IllegalStateException if scanning already started.
284 */
285 public void setStopKey(final byte[] stop_key) {
286 KeyValue.checkKey(stop_key);
287 checkScanningNotStarted();
288 this.stop_key = stop_key;
289 }
290
291 /**
292 * Specifies up to which row key to scan (exclusive).

Callers 15

testMethod · 0.95
testMethod · 0.95
executeMethod · 0.95
executeMethod · 0.95
basicScanMethod · 0.95
scanCloseEarlyMethod · 0.95
keyRegexpFilterMethod · 0.95
fuzzyRowFilterMethod · 0.95
columnPrefixFilterMethod · 0.95
columnRangeFilterMethod · 0.95

Calls 2

checkKeyMethod · 0.95

Tested by 15

testMethod · 0.76
testMethod · 0.76
executeMethod · 0.76
executeMethod · 0.76
basicScanMethod · 0.76
scanCloseEarlyMethod · 0.76
keyRegexpFilterMethod · 0.76
fuzzyRowFilterMethod · 0.76
columnPrefixFilterMethod · 0.76
columnRangeFilterMethod · 0.76