@camstack/system 1.2.120 → 1.2.121
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.
|
@@ -22,6 +22,16 @@ export declare class SqliteSettingsAddon extends BaseAddon {
|
|
|
22
22
|
private vectorIndex;
|
|
23
23
|
private walMaintenance;
|
|
24
24
|
constructor();
|
|
25
|
+
/**
|
|
26
|
+
* The engine behind `settings-store` cannot read that door during
|
|
27
|
+
* `initialize()`. `BaseAddon` always `await`s `resolveConfig()` first;
|
|
28
|
+
* on an isolated sqlite that round-trip is a UDS call to the parent,
|
|
29
|
+
* and the parent is waiting for THIS child's post-init handshake before
|
|
30
|
+
* it builds the door (D233). Live 1.2.152: 30 s hang, timeout, every
|
|
31
|
+
* in-process builtin skipped, then this addon finished one second later.
|
|
32
|
+
* Constructor defaults (`{}`) are the whole config this addon has.
|
|
33
|
+
*/
|
|
34
|
+
protected resolveConfig(): Promise<void>;
|
|
25
35
|
protected onInitialize(): Promise<ProviderRegistration[]>;
|
|
26
36
|
protected onShutdown(): Promise<void>;
|
|
27
37
|
getBackend(): SqliteSettingsBackend | null;
|
|
@@ -1727,6 +1727,16 @@ var SqliteSettingsAddon = class extends require_dist.BaseAddon {
|
|
|
1727
1727
|
constructor() {
|
|
1728
1728
|
super({});
|
|
1729
1729
|
}
|
|
1730
|
+
/**
|
|
1731
|
+
* The engine behind `settings-store` cannot read that door during
|
|
1732
|
+
* `initialize()`. `BaseAddon` always `await`s `resolveConfig()` first;
|
|
1733
|
+
* on an isolated sqlite that round-trip is a UDS call to the parent,
|
|
1734
|
+
* and the parent is waiting for THIS child's post-init handshake before
|
|
1735
|
+
* it builds the door (D233). Live 1.2.152: 30 s hang, timeout, every
|
|
1736
|
+
* in-process builtin skipped, then this addon finished one second later.
|
|
1737
|
+
* Constructor defaults (`{}`) are the whole config this addon has.
|
|
1738
|
+
*/
|
|
1739
|
+
async resolveConfig() {}
|
|
1730
1740
|
async onInitialize() {
|
|
1731
1741
|
const addonId = require_dist.bareAddonId(this.ctx.id);
|
|
1732
1742
|
const path = await import("node:path");
|
|
@@ -1721,6 +1721,16 @@ var SqliteSettingsAddon = class extends BaseAddon {
|
|
|
1721
1721
|
constructor() {
|
|
1722
1722
|
super({});
|
|
1723
1723
|
}
|
|
1724
|
+
/**
|
|
1725
|
+
* The engine behind `settings-store` cannot read that door during
|
|
1726
|
+
* `initialize()`. `BaseAddon` always `await`s `resolveConfig()` first;
|
|
1727
|
+
* on an isolated sqlite that round-trip is a UDS call to the parent,
|
|
1728
|
+
* and the parent is waiting for THIS child's post-init handshake before
|
|
1729
|
+
* it builds the door (D233). Live 1.2.152: 30 s hang, timeout, every
|
|
1730
|
+
* in-process builtin skipped, then this addon finished one second later.
|
|
1731
|
+
* Constructor defaults (`{}`) are the whole config this addon has.
|
|
1732
|
+
*/
|
|
1733
|
+
async resolveConfig() {}
|
|
1724
1734
|
async onInitialize() {
|
|
1725
1735
|
const addonId = bareAddonId(this.ctx.id);
|
|
1726
1736
|
const path = await import("node:path");
|