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
The AccumulatedBatchSize is cleared on submission iteration.
When m.AccumulatedBatchSize has reached the max, it will trigger toSubmit event for each subsequent block, until the submission handler iterates again.
The text was updated successfully, but these errors were encountered:
In other words:
there is a loop which tracks accumulated data and submits signals whenever the accumulated mount is exceeded, but the counter is is not set to zero when submitting the signal, but rather, when consuming it, which is wrong.
The
AccumulatedBatchSize
is cleared on submission iteration.When
m.AccumulatedBatchSize
has reached the max, it will triggertoSubmit
event for each subsequent block, until the submission handler iterates again.The text was updated successfully, but these errors were encountered: