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
Both async and sync readers transfer messages in batches that are received from server as is. Sometimes it hurts performance in user scenarios where on each received batch user perform a long running operation. More batches leads to more long-running operations.
The idea is to batch all batches received from server into one. Therefore, user will receive all available messages in one batch.
The text was updated successfully, but these errors were encountered:
Both async and sync readers transfer messages in batches that are received from server as is. Sometimes it hurts performance in user scenarios where on each received batch user perform a long running operation. More batches leads to more long-running operations.
The idea is to batch all batches received from server into one. Therefore, user will receive all available messages in one batch.
The text was updated successfully, but these errors were encountered: