Attempts to fetch a global annotation from storage @param tsdb The TSDB to use for storage access @param start_time The start time as a Unix epoch timestamp @return A valid annotation object if found, null if not
(final TSDB tsdb,
final long start_time)
| 229 | * @return A valid annotation object if found, null if not |
| 230 | */ |
| 231 | public static Deferred<Annotation> getAnnotation(final TSDB tsdb, |
| 232 | final long start_time) { |
| 233 | return getAnnotation(tsdb, (byte[])null, start_time); |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * Attempts to fetch a global or local annotation from storage |