06:08
<Domenic>
is it defined somewhere which agent cluster service workers may or may not use (vs the relevant web pages)?
https://html.spec.whatwg.org/#obtain-a-service-worker-agent
08:41
<frank-dspeed>
Hi Frinds what is the current suggested way to create a Transform Stream that waits until the writeable side got closed so that we are sure we get complete data before we enqueue it for the next stream? So Common Backpressure
08:42
<frank-dspeed>
i hacked this together but it feels a bit wrong maybe some one did come up with a waterMark based method or something better or at last can verify that this is the best generic we have
08:42
<frank-dspeed>
class BackpressureTransformStream extends TransformStream { constructor() { const backpressure = []; super({ start(){},
  transform(data,_controller){ backpressure.push(data); },
  close(controller){ controller.enqueue(backpressure.flaten()); backpressure.length = 0; },
  cancel(){ backpressure.length = 0; },
}); }};
08:48
<frank-dspeed>
i need that for example to create Url Objects so i can not take the data incremental but i also do not want to write it via pipeTo i want to Transform in a streaming way and then i want to transform the complete object some times. so i Did come up with the above i apply 4 pipe Through before this gets hit and after that 3 pipeTrough's it works but i am not sure why and how it works at all :). As i am not sure how my sources Underlying Stream is implemented exactly but it looks working in all tests at present.
08:52
<frank-dspeed>
for that who wonder about the length 0 stuff that is a old engine trick to fast unload arrays that is not so important
15:38
<Mauricio Ortiz>
hi
16:34
<hacknorris>
someone know when attr() types will be available in firefox?
16:34
<hacknorris>
and safari too
19:07
<TabAtkins>
hacknorris: No timeline bc feature still has open security questions I haven't been able to address yet.
19:08
<TabAtkins>
Domenic annevk: Sigh, can we close https://github.com/whatwg/html/issues/8653 as a troll?
19:08
<hacknorris>
hacknorris: No timeline bc feature still has open security questions I haven't been able to address yet.
a. ok
19:08
<hacknorris>
Domenic annevk: Sigh, can we close https://github.com/whatwg/html/issues/8653 as a troll?
wtf ?