Ben Kelly

Results 228 comments of Ben Kelly

Wouldn't `?fallback=` require URL encoding the fallback URL in the search param? I thought one advantage of special syntax like "|" would be that it could avoid the URL encoding...

Sorry if the conversation has moved on, but: > Hmm yeah. I'm not sure you can ever be a followingSignal with your own controller. I implemented something like this in...

The example I was provided was a processor which decrypts cookies in a network stream. Once the cookies have passed they want only the native C++ stream processors operating for...

@trevnorris, does the above address your use case?

I think this can be implemented via a Transform stream that throws away frames that are behind real-time. So you would do something like ``` source.pipeThrough(realTimeFilterTransform).pipeTo(sink); ``` A transform could...

It seems to me if your Transform resolves its .write() promise at a "real time" rate, then .pipeThrough() will run at the correct rate regardless of the underlying source. No?...

Ok, lets back up a second and just examine one case. > Another use case of a real-time push source and skipping intermediate values but the latest, would be a...

I would try to implement a latch using TransformStream for this use case. I see that the current TransformStream does not permit this, though. It needs a way to let...

I write issue #384 describing what I think would need to change to implement a latching mechanism in TransformStream.