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
{{ message }}
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
When node A subscript to TOPIC, nodes B, C, D are online and they can publish to TOPIC so that A can receive. If node E goes online after A subscribe to TOPIC, even E publishes message to TOPIC, A can not receive the message in this case. Is this correct for current development of pubsub protocol on ipfs? Is there a way to store and relay subscriptions like mqtt's broker scheme?
The text was updated successfully, but these errors were encountered:
@shuangjj subscriptions are being propagated on connect, but it is an async operation, you are probably just seeing that happening on a 'warm up period'. Try use a setTimeout to double check.
@diasdavid Thanks! It makes sense A doesn't get the message since E haven't updated its subscriber including A. Then there's a great chance A misses the message if E publishes message without checking the number of the subscribers.
When node A subscript to TOPIC, nodes B, C, D are online and they can publish to TOPIC so that A can receive. If node E goes online after A subscribe to TOPIC, even E publishes message to TOPIC, A can not receive the message in this case. Is this correct for current development of pubsub protocol on ipfs? Is there a way to store and relay subscriptions like mqtt's broker scheme?
The text was updated successfully, but these errors were encountered: