Queue
queue(entity, strong)
queue(entity, strong)let item1 = {uid:1}
let item2 = {uid:2, ref:item1}
One.queue([item1, item2])
// content appears as if cached
One.get(1) === undefined // false
One.get(2) === undefined // false
// but it is not yet unique
One.get(1) === One.get(2).ref // falseCache prevails
unqueue(entity)
unqueue(entity)getQueued(uidOrEntity)
getQueued(uidOrEntity)commit(threadId, strong)
commit(threadId, strong)Last updated