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 arenull
if they don't exist. -
getAsync(
ID id) → Future< OBJ?> -
Available on DatabaseUniverseCollection<
Get a single object by itsID, OBJ> , provided by the CollectionAsync extensionid
. Returnsnull
if the object does not exist.