Convenience overload of getUIDMeta(TSDB, UniqueIdType, byte[]) @param tsdb The TSDB to use for storage access @param type The type of UID to fetch @param uid The ID of the meta to fetch @return A UIDMeta from storage or a default @throws HBaseException if there was an issue fetching @throws
(final TSDB tsdb,
final UniqueIdType type, final String uid)
| 338 | * @throws NoSuchUniqueId If the UID does not exist |
| 339 | */ |
| 340 | public static Deferred<UIDMeta> getUIDMeta(final TSDB tsdb, |
| 341 | final UniqueIdType type, final String uid) { |
| 342 | return getUIDMeta(tsdb, type, UniqueId.stringToUid(uid)); |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Verifies the UID object exists, then attempts to fetch the meta from |