harperdb 4.4.2 → 4.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harperdb",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "description": "HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.",
5
5
  "keywords": [
6
6
  "database",
@@ -535,6 +535,12 @@ export declare function makeTable(options: any): {
535
535
  * @returns
536
536
  */
537
537
  transformEntryForSelect(select: any, context: any, read_txn: any, filtered: any, ensure_loaded?: any, can_skip?: any): (entry: any) => any;
538
+ /**
539
+ * Subscribe on one thread unless this is a per-thread subscription
540
+ * @param worker_index
541
+ * @param options
542
+ */
543
+ subscribeOnThisThread(worker_index: any, options: any): boolean;
538
544
  addAttributes(attributes_to_add: any): Promise<any>;
539
545
  removeAttributes(names: string[]): Promise<any>;
540
546
  getRecordCount(options: any): {
@@ -370,6 +370,7 @@ export declare function table(table_definition: TableDefinition): {
370
370
  operation(operation: any, context: any): any;
371
371
  transformToOrderedSelect(entries: any[], select: (string | import("./ResourceInterface").SubSelect)[], sort: import("./ResourceInterface").Sort, context: import("./ResourceInterface").Context, read_txn: any, transformToRecord: Function): any;
372
372
  transformEntryForSelect(select: any, context: any, read_txn: any, filtered: any, ensure_loaded?: any, can_skip?: any): (entry: any) => any;
373
+ subscribeOnThisThread(worker_index: any, options: any): boolean;
373
374
  addAttributes(attributes_to_add: any): Promise<any>;
374
375
  removeAttributes(names: string[]): Promise<any>;
375
376
  getRecordCount(options: any): {