Replies: 1 comment
-
This sounds like a bug as the code would suggest it intends to send back a response for each new connection (bridge). I would normally turn this issue from a question to a bug issue, however,
Yes, the storage is available directly through the |
Beta Was this translation helpful? Give feedback.
-
Question
In the store example, it's noted that the store will fire a callback when the bridge connects but this only seems to be true of the first bridge, and not for the connecting of each subsequent bridge.
In my program, I have the root
App
component open a bridge, and it gets that initial message from the store, but other sub-components that also open a bridge do not until new requests are sent to the Store and actions get reduced.If there were a way to borrow data from the store immutably during create that would probably work, but it also seems like it would be good to have every bridge opened to get that initial callback message.
Is there a way to read from the store directly? Alternatively, would it be possible to force the store to send a message for every bridge instead of just the first?
Beta Was this translation helpful? Give feedback.
All reactions