Profile / Thread styles

This commit is contained in:
2023-07-24 15:30:21 +01:00
parent d292e658fc
commit 076d5d8cd5
67 changed files with 684 additions and 602 deletions

View File

@ -27,7 +27,7 @@ class QueryTrace {
readonly filters: Array<ReqFilter>,
readonly connId: string,
fnClose: (id: string) => void,
fnProgress: () => void
fnProgress: () => void,
) {
this.id = uuid();
this.start = unixNowMs();
@ -293,7 +293,7 @@ export class Query implements QueryBase {
q.filters,
c.Id,
x => c.CloseReq(x),
() => this.#onProgress()
() => this.#onProgress(),
);
this.#tracing.push(qt);
c.QueueReq(["REQ", qt.id, ...qt.filters], () => qt.sentToRelay());