CollectionAsync<ID, OBJ> extension

Asychronous extensions for DatabaseUniverseCollection.

on

Methods

getAllAsync(List<ID> ids) Future<List<OBJ?>>

Available on DatabaseUniverseCollection<ID, OBJ>, provided by the CollectionAsync extension

Get a list of objects by their ids. Objects in the list are null if they don't exist.
getAsync(ID id) Future<OBJ?>

Available on DatabaseUniverseCollection<ID, OBJ>, provided by the CollectionAsync extension

Get a single object by its id. Returns null if the object does not exist.