()
| 330 | } |
| 331 | |
| 332 | public Object fetch() { |
| 333 | |
| 334 | mul_get_start_time = DateTime.nanoTime(); |
| 335 | |
| 336 | if (LOG.isDebugEnabled()) { |
| 337 | LOG.debug("Trying to fetch data for concurrency index: " |
| 338 | + concurrency_index + "; with " + gets.size() + " gets"); |
| 339 | } |
| 340 | return tsdb.client.get(gets) |
| 341 | .addCallback(this) |
| 342 | .addErrback(new ErrorCb()); |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Iterate through each row of the multi get results, parses out data |
no test coverage detected