feat(nbstore): add blob sync (#8996)

This commit is contained in:
EYHN
2024-12-07 08:05:03 +00:00
parent f54f6e88cb
commit 7225f59138
7 changed files with 214 additions and 19 deletions
@@ -57,7 +57,7 @@ export class PriorityQueue {
this.priorityMap.clear();
}
updatePriority(id: string, priority: number) {
setPriority(id: string, priority: number) {
if (this.remove(id)) {
this.push(id, priority);
}