CollectionAsync<ID, OBJ> extension
Asychronous extensions for DatabaseUniverseCollection.
- on
-
- DatabaseUniverseCollection<
ID, OBJ>
- DatabaseUniverseCollection<
Methods
-
getAllAsync(
List< ID> ids) → Future<List< OBJ?> > -
Available on DatabaseUniverseCollection<
Get a list of objects by theirID, OBJ> , provided by the CollectionAsync extensionids. Objects in the list arenullif they don't exist. -
getAsync(
ID id) → Future< OBJ?> -
Available on DatabaseUniverseCollection<
Get a single object by itsID, OBJ> , provided by the CollectionAsync extensionid. Returnsnullif the object does not exist.