Fork me on GitHub
#core-async
<
2016-03-03
>
profil19:03:51

Hey guys! Is it possible to propagate close backwards in a merge? when calling close! on a merge channel I want all inputs to close aswell

ghadi20:03:14

not really

ghadi20:03:05

curious to know more about the use-case, there may be a Better Way

profil22:03:24

@ghadi: I am combining a channel with a sliding buffer with another channel

profil22:03:05

The sliding buffer channel is used to render to a canvas, and stuff is put onto it by requestAnimationFrame, and I want to be able to drop frames

profil22:03:39

Maybe I'll just use alts! in a go-loop to handle this