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

Method setStartKey

src/Scanner.java:262–266  ·  view source on GitHub ↗

Specifies from which row key to start scanning (inclusive). @param start_key The row key to start scanning from. If you don't invoke this method, scanning will begin from the first row key in the table. This byte array will NOT be copied. @throws IllegalStateException if scanning a

(final byte[] start_key)

Source from the content-addressed store, hash-verified

260 * @throws IllegalStateException if scanning already started.
261 */
262 public void setStartKey(final byte[] start_key) {
263 KeyValue.checkKey(start_key);
264 checkScanningNotStarted();
265 this.start_key = start_key;
266 }
267
268 /**
269 * Specifies from which row key to start scanning (inclusive).

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