(final List<Annotation> annotations)
| 303 | /** Handles storing the global annotations after fetching them */ |
| 304 | class GlobalCB implements Callback<Object, List<Annotation>> { |
| 305 | public Object call(final List<Annotation> annotations) throws Exception { |
| 306 | globals.addAll(annotations); |
| 307 | return data_query.buildQueriesAsync(tsdb).addCallback(new BuildCB()); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | // if we the caller wants to search for global annotations, fire that off |
nothing calls this directly
no test coverage detected