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
create receives the store to dispatch updates and return values selected from the namespace. This could have the unintended consequence of letting unrelated namespaces received updates out of band. In effect there is a shared object reference defeating immutability.
Solution
Updates should occur through an explicit call ns.update(), or through recreation on next render. create should guard for this and throw on calls to dispatch if versions are out of sync.
The text was updated successfully, but these errors were encountered:
evanrs
changed the title
Version ns.create
Version namespace.create
Mar 27, 2016
evanrs
changed the title
Version namespace.create
Version createMar 27, 2016
create
receives the store to dispatch updates and return values selected from the namespace. This could have the unintended consequence of letting unrelated namespaces received updates out of band. In effect there is a shared object reference defeating immutability.Solution
Updates should occur through an explicit call
ns.update()
, or through recreation on next render.create
should guard for this and throw on calls to dispatch if versions are out of sync.The text was updated successfully, but these errors were encountered: