-
When using In my use cases, I send a lot of data through a graphql subscription and in some cases the browser cannot receive the data fast enough. Eventually the buffer fills up at 1024 items which is the default queue size and it throws an exception crashing the entire process, not just that particular request.
However |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
All it would take is to pass the parameter here: return new Repeater(..., , new SlidingBuffer(200)) for example
|
Beta Was this translation helpful? Give feedback.
Hey @half2me, this PR will solve this: #3440