EXPLOSION

Results 71 comments of EXPLOSION

Elixir's GenStage seems to backpressure on slowest consumer: https://hexdocs.pm/gen_stage/GenStage.BroadcastDispatcher.html It's not exactly a channel persay, but it's a thing where you can have separate "stages" -- each can either be...

I did some investigating into why `agen` is being kept alive... After much finagling around with `objgraph`, it turns out that the async generator is just kept alive for the...

Quick question: Could it be a rogue-like? (Just asking, I don't really think I could do this)

I tried to add this in #45. However, I'm a bit unsure of which of these to do: - use `sendBeacon` always except if `callback` is passed (asynchronous -> no...

+1 To add a concrete example, I'm writing a library and I would really appreciate being able to test all these versions without (presumably -- I assume most work is...

This is a bit annoying to do so far, as we have to return a CallableType as a type alias but... like... we need to mark that it is missing...

Heya! This was a bit confusing while I was implementing Concatenate which is why I added that note -- it doesn't seem to be helping so I may have to...

Thank you! Just a quick question: should 1xx responses on non-streaming requests return? With this PR they do but I'm not sure that's intentional. (I think they should definitely return...

If you are using protocols for mixins, why not ABCs? To me, `@final` and non-inheritance subtyping (meaning you _can_ provide a different implementation) feels like it's just asking for trouble...