UNPKG

realm

Version:

Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores

90 lines 5.2 kB
/** * Abstract base class containing methods shared by Realm {@link List}, {@link Dictionary}, {@link Results} and {@link RealmSet}. * * A {@link Collection} always reflect the current state of the Realm. The one exception to this is * when using `for...in` or `for...of` enumeration, which will always enumerate over the * objects which matched the query when the enumeration is begun, even if some of them are * deleted or modified to be excluded by the filter during the enumeration. * @since 0.11.0 */ export declare abstract class Collection<KeyType = unknown, ValueType = unknown, EntryType = [KeyType, ValueType], T = ValueType, ChangeCallbackType = unknown> implements Iterable<T> { /** * @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/keys Array.prototype.keys} * @returns An iterator with all keys in the collection. * @since 0.11.0 */ abstract keys(): Iterable<KeyType>; /** * @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/keys Array.prototype.keys} * @returns An iterator with all values in the collection. * @since 0.11.0 */ abstract values(): Iterable<ValueType>; /** * @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/entries Array.prototype.keys} * @returns An iterator with all key/value pairs in the collection. * @since 0.11.0 */ abstract entries(): Iterable<EntryType>; /** * This is the same method as the {@link Collection.values} method. * Its presence makes collections _iterable_, thus able to be used with ES6 * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of `for-of`} * loops, * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator `...`} * spread operators, and more. * @see {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/iterator Symbol.iterator} * and the {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#iterable iterable protocol} * @returns An iterable of each value in the collection. * @example * for (let object of collection) { * // do something with each object * } * @since 0.11.0 */ abstract [Symbol.iterator](): Iterator<T>; /** * Checks if this collection has not been deleted and is part of a valid Realm. * @returns `true` if the collection can be safely accessed. * @since 0.14.0 */ abstract isValid(): boolean; /** * Add a listener `callback` which will be called when a **live** collection instance changes. * @param callback - A function to be called when changes occur. * @param keyPaths - Indicates a lower bound on the changes relevant for the listener. This is a lower bound, since if multiple listeners are added (each with their own `keyPaths`) the union of these key-paths will determine the changes that are considered relevant for all listeners registered on the collection. In other words: A listener might fire more than the key-paths specify, if other listeners with different key-paths are present. * @note `deletions` and `oldModifications` report the indices in the collection before the change happened, * while `insertions` and `newModifications` report the indices into the new version of the collection. * @throws A {@link TypeAssertionError} if `callback` is not a function. * @note * Adding the listener is an asynchronous operation, so the callback is invoked the first time to notify the caller when the listener has been added. * Thus, when the callback is invoked the first time it will contain empty arrays for each property in the `changes` object. * @example * wines.addListener((collection, changes) => { * // collection === wines * console.log(`${changes.insertions.length} insertions`); * console.log(`${changes.oldModifications.length} oldModifications`); * console.log(`${changes.newModifications.length} newModifications`); * console.log(`${changes.deletions.length} deletions`); * console.log(`new size of collection: ${collection.length}`); * }); * @example * wines.addListener((collection, changes) => { * console.log("A wine's brand might have changed"); * }, ["brand"]); */ addListener(callback: ChangeCallbackType, keyPaths?: string | string[]): void; /** * Remove the listener `callback` from the collection instance. * @param callback - Callback function that was previously * added as a listener through the {@link Collection.addListener} method. * @throws a {@link TypeAssertionError} If `callback` is not a function. */ removeListener(callback: ChangeCallbackType): void; /** * Remove all `callback` listeners from the collection instance. */ removeAllListeners(): void; } export type AnyCollection = Collection<any, any, any, any, any>; //# sourceMappingURL=Collection.d.ts.map