MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / call

Method call

src/core/SaltScanner.java:661–674  ·  view source on GitHub ↗
(final ArrayList<Boolean> matches)

Source from the content-addressed store, hash-verified

659 /** CB to called after all of the UIDs have been resolved */
660 class MatchCB implements Callback<Object, ArrayList<Boolean>> {
661 @Override
662 public Object call(final ArrayList<Boolean> matches)
663 throws Exception {
664 for (final boolean matched : matches) {
665 if (!matched) {
666 skips.add(tsuid);
667 return null;
668 }
669 }
670 // matched all, good data
671 keepers.add(tsuid);
672 processRow(key, row);
673 return null;
674 }
675 }
676
677 /** Resolves all of the row key UIDs to their strings for filtering */

Callers

nothing calls this directly

Calls 2

processRowMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected