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
We can see race conditions if one portal is removed (and calls clear()) and another portal is created (and calls sendUpdate()). If the latter component is updating before the former, clear() will remove the content of sendUpdate().
The solution is to queue these events, which the Event bus does not allow.
The text was updated successfully, but these errors were encountered:
Problem with the Event Bus:
We can see race conditions if one portal is removed (and calls
clear()
) and another portal is created (and callssendUpdate()
). If the latter component is updating before the former,clear()
will remove the content ofsendUpdate()
.The solution is to queue these events, which the Event bus does not allow.
The text was updated successfully, but these errors were encountered: