Merge pull request #960 from waku-org/simplify-store-return

This commit is contained in:
fryorcraken.eth 2022-09-19 14:41:00 +10:00 committed by GitHub
commit 32a55f707a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 5 deletions

View File

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
### Changed
- `queryCallbackOnPromise`'s return value has been simplified to `Promise<void>`.
- doc: clarified behaviour of `WakuStore` query functions.
## [0.28.0] - 2022-09-16 ## [0.28.0] - 2022-09-16
### Changed ### Changed

View File

@ -63,7 +63,7 @@ export interface QueryOptions {
* - { @link PageDirection.FORWARD }: Oldest page first. * - { @link PageDirection.FORWARD }: Oldest page first.
* *
* Note: This does not affect the ordering of messages with the page * Note: This does not affect the ordering of messages with the page
* (oldest message is always first). * (the oldest message is always first).
* *
* @default { @link PageDirection.BACKWARD } * @default { @link PageDirection.BACKWARD }
*/ */
@ -114,6 +114,9 @@ export class WakuStore {
* - latest to oldest if `options.pageDirection` == { @link PageDirection.BACKWARD } * - latest to oldest if `options.pageDirection` == { @link PageDirection.BACKWARD }
* *
* The ordering may affect performance. * The ordering may affect performance.
* The ordering depends on the behavior of the remote store node.
* If strong ordering is needed, you may need to handle this at application level
* and set your own timestamps too (the WakuMessage timestamps are not certified).
* *
* @throws If not able to reach a Waku Store peer to query * @throws If not able to reach a Waku Store peer to query
* or if an error is encountered when processing the reply. * or if an error is encountered when processing the reply.
@ -156,9 +159,14 @@ export class WakuStore {
* *
* The callback function takes a `Promise<WakuMessage>` in input, * The callback function takes a `Promise<WakuMessage>` in input,
* useful if messages needs to be decrypted and performance matters. * useful if messages needs to be decrypted and performance matters.
* **Order of messages is not guaranteed**.
* *
* @returns the promises of the callback call. * The order of the messages passed to the callback is as follows:
* - within a page, messages are expected to be ordered from oldest to most recent
* - pages direction depends on { @link QueryOptions.pageDirection }
*
* Do note that the resolution of the `Promise<WakuMessage | undefined` may
* break the order as it may rely on the browser decryption API, which in turn,
* may have a different speed depending on the type of decryption.
* *
* @throws If not able to reach a Waku Store peer to query * @throws If not able to reach a Waku Store peer to query
* or if an error is encountered when processing the reply. * or if an error is encountered when processing the reply.
@ -169,7 +177,7 @@ export class WakuStore {
message: Promise<WakuMessage | undefined> message: Promise<WakuMessage | undefined>
) => Promise<void | boolean> | boolean | void, ) => Promise<void | boolean> | boolean | void,
options?: QueryOptions options?: QueryOptions
): Promise<Array<Promise<void>>> { ): Promise<void> {
let abort = false; let abort = false;
let promises: Promise<void>[] = []; let promises: Promise<void>[] = [];
for await (const page of this.queryGenerator(contentTopics, options)) { for await (const page of this.queryGenerator(contentTopics, options)) {
@ -181,7 +189,7 @@ export class WakuStore {
promises = promises.concat(_promises); promises = promises.concat(_promises);
} }
return promises; await Promise.all(promises);
} }
/** /**
@ -190,6 +198,13 @@ export class WakuStore {
* This is a generator, useful if you want most control on how messages * This is a generator, useful if you want most control on how messages
* are processed. * are processed.
* *
* The order of the messages returned by the remote Waku node SHOULD BE
* as follows:
* - within a page, messages SHOULD be ordered from oldest to most recent
* - pages direction depends on { @link QueryOptions.pageDirection }
*
* However, there is no way to guarantee the behavior of the remote node.
*
* @throws If not able to reach a Waku Store peer to query * @throws If not able to reach a Waku Store peer to query
* or if an error is encountered when processing the reply. * or if an error is encountered when processing the reply.
*/ */