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
Current solution doesn't support back pressure - if multiple pathfinder instances exist, all of them provide routes in parallel nad can provide more routes than necessary. The monolith client has to accept all the routes, it only has an option ignore them, not to throttle or cancel the computation.
Reactive streams offer a publish-subscribe concept, where subscriber requests a limited amount of data, and can request more if ready for them. Publisher wouldn't send more data than requested.
The text was updated successfully, but these errors were encountered:
Current solution doesn't support back pressure - if multiple pathfinder instances exist, all of them provide routes in parallel nad can provide more routes than necessary. The monolith client has to accept all the routes, it only has an option ignore them, not to throttle or cancel the computation.
Reactive streams offer a publish-subscribe concept, where subscriber requests a limited amount of data, and can request more if ready for them. Publisher wouldn't send more data than requested.
The text was updated successfully, but these errors were encountered: