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
As requested I do have a usecase for the dropped operator windowWithTimeOrCount()
What I am trying to do is bundle requests to a server without waiting longer than maxWait ms.
This is part of a rather elaborate DataService/Cacheing scheme that often retrieves thousands of data elements, but sometimes only 2-3. I don't want to get more than, say, 1000 elements, but also don't want to wait longer than, say, 50 ms. I would assume that this is a rather standard usecase.
I've implemented what I needed - as good as I could - and it works almost perfectly, but looses the last element of every 'chunk'. (As this isn't a support forum, I'm just linking to the StackOverflow question, which has my implementation included.)
The text was updated successfully, but these errors were encountered:
As requested I do have a usecase for the dropped operator
windowWithTimeOrCount()
What I am trying to do is bundle requests to a server without waiting longer than maxWait ms.
This is part of a rather elaborate DataService/Cacheing scheme that often retrieves thousands of data elements, but sometimes only 2-3. I don't want to get more than, say, 1000 elements, but also don't want to wait longer than, say, 50 ms. I would assume that this is a rather standard usecase.
I've implemented what I needed - as good as I could - and it works almost perfectly, but looses the last element of every 'chunk'. (As this isn't a support forum, I'm just linking to the StackOverflow question, which has my implementation included.)
The text was updated successfully, but these errors were encountered: