You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When making multiple change on a syncable object, multiple call to send are made and only the first callback of send will be called.
One way to work around this problem is to ensure only one call to change is made by Task of the EventLoop (by using setImmadiate for example). Or store the promise return by send to call the next send after the promise resolve and ignore all other send while a send is queued.
When making multiple change on a syncable object, multiple call to
send
are made and only the first callback ofsend
will be called.One way to work around this problem is to ensure only one call to
change
is made by Task of the EventLoop (by usingsetImmadiate
for example). Or store the promise return bysend
to call the nextsend
after the promise resolve and ignore all othersend
while asend
is queued.The text was updated successfully, but these errors were encountered: