()
| 768 | } |
| 769 | |
| 770 | @Override |
| 771 | public Deferred<DataPoints[]> runAsync() throws HBaseException { |
| 772 | Deferred<DataPoints[]> result = null; |
| 773 | |
| 774 | if (use_multi_gets && override_multi_get) { |
| 775 | result = this.findSpansWithMultiGetter().addCallback(new GroupByAndAggregateCB()); |
| 776 | } else { |
| 777 | result = findSpans().addCallback(new GroupByAndAggregateCB()); |
| 778 | } |
| 779 | |
| 780 | if (rollup_usage != null && rollup_usage.fallback()) { |
| 781 | result.addCallback(new FallbackRollupOnEmptyResult()); |
| 782 | } |
| 783 | |
| 784 | return result; |
| 785 | } |
| 786 | |
| 787 | @Override |
| 788 | public Deferred<DataPoints[]> runHistogramAsync() throws HBaseException { |
nothing calls this directly
no test coverage detected