MCPcopy Create free account
hub / github.com/massCodeIO/massCode / isContentUpdateBusy

Function isContentUpdateBusy

src/renderer/composables/useSnippetUpdate.ts:111–116  ·  view source on GitHub ↗
(snippetId: number, contentId: number)

Source from the content-addressed store, hash-verified

109}
110
111function isContentUpdateBusy(snippetId: number, contentId: number) {
112 const key = getContentUpdateKey(snippetId, contentId)
113 return (
114 updateContentQueue.value.has(key) || inFlightContentKeys.value.has(key)
115 )
116}
117
118function hasBusyContentUpdates() {
119 return (

Callers

nothing calls this directly

Calls 1

getContentUpdateKeyFunction · 0.85

Tested by

no test coverage detected