Skip to content

Commit cb04012

Browse files
committed
minor cleanup
1 parent c3bffaa commit cb04012

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

packages/host/app/lib/browser-queue.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export class BrowserQueue implements Queue {
2828
get isDestroyed() {
2929
return this.#isDestroyed;
3030
}
31+
3132
get hasStarted() {
3233
return this.#hasStarted;
3334
}
@@ -76,7 +77,7 @@ export class BrowserQueue implements Queue {
7677
}, 250);
7778

7879
private async drainJobs() {
79-
await this.#flush;
80+
await this.flush();
8081

8182
let jobsDrained: () => void;
8283
this.#flush = new Promise((res) => (jobsDrained = res));
@@ -106,6 +107,6 @@ export class BrowserQueue implements Queue {
106107

107108
async destroy() {
108109
this.#isDestroyed = true;
109-
await this.#flush;
110+
await this.flush();
110111
}
111112
}

packages/host/tests/unit/queue-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ module('Unit | queue | browser implementation', function (hooks) {
2626
});
2727

2828
test(`a job can throw an exception`, async function (assert) {
29+
queue.register('increment', async (a: number) => a + 1);
2930
queue.register('boom', async () => {
3031
throw new Error('boom!');
3132
});
3233
let [errorJob, nonErrorJob] = await Promise.all([
3334
queue.publish<number>('boom', null),
3435
queue.publish<number>('increment', 17),
3536
]);
36-
queue.register('increment', async (a: number) => a + 1);
3737

3838
// assert that the error that was thrown does not prevent subsequent jobs
3939
// from running

packages/runtime-common/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"recast": "^0.23.4",
4949
"super-fast-md5": "^1.0.1",
5050
"transform-modules-amd-plugin": "workspace:*",
51-
"typescript-memoize": "^1.1.1",
5251
"uuid": "^9.0.1"
5352
},
5453
"devDependencies": {

packages/runtime-common/queue.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { PgPrimitive } from './expression';
2-
import { Memoize } from 'typescript-memoize';
32
import { Deferred } from './deferred';
43

54
export interface QueueOpts {
@@ -31,7 +30,6 @@ export class Job<T> {
3130
public uuid: string,
3231
private notifier: Deferred<T>,
3332
) {}
34-
@Memoize()
3533
get done(): Promise<T> {
3634
return this.notifier.promise;
3735
}

pnpm-lock.yaml

-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)