Initiate the get requests and return the tree map of results. @return A non-null tree map of results (may be empty)
()
| 610 | * @return A non-null tree map of results (may be empty) |
| 611 | */ |
| 612 | public Deferred<SortedMap<byte[], Span>> fetch() { |
| 613 | if(tags.isEmpty()) { |
| 614 | return Deferred.fromResult(null); |
| 615 | } |
| 616 | startFetch(); |
| 617 | return results; |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * Initiate the get requests and return the tree map of results. |