Is there a Flow interface to stdin?
# announcements
l
Is there a Flow interface to stdin?
☝️ 1
z
Not in any of the standard libraries. What are you looking for? Flow of bytes? Byte arrays?
l
flow of bytes
or a flow of bytes arrays, either way works.
I want to pass data through stdin and process it with flow
z
Shouldn't be hard to build that, just use the regular flow builder and read from the stream in a loop
l
yea I have one that reads strings with readline. I just thought this should be pretty standard and didn't want to reinvent it, especially since I have no kotlin experience and it'll probably break a few times.