Code Monkey home page Code Monkey logo

Comments (9)

ekinhbayar avatar ekinhbayar commented on June 4, 2024

Shouldn't trying to read a closed stream hint you that you attempted to read closed stream?

from byte-stream.

bwoebi avatar bwoebi commented on June 4, 2024

@ekinhbayar only if you want to read a fixed amount of bytes (where you want a guarantee that the returned string is exactly that long) [as opposed to up to].
In any other case, a string of size 0 (or null for instance) is not problematic. It's even desirable, as you expect that streams are going to end sometime.

from byte-stream.

kelunik avatar kelunik commented on June 4, 2024

@bwoebi I think @ekinhbayar's point is reading repeatedly from an already closed stream.

@ekinhbayar: Yes, that's probably always a programming error, but it makes implementing some things more complex. It's a trade-off for easier to implement streams.

from byte-stream.

bwoebi avatar bwoebi commented on June 4, 2024

I disagree.

There might be e.g. multiple optional parts at stream end, so, when you try to do multiple calls to read until EOL, the optional parts will just end up with null, but that's totally fine.
If it were throwing an exception, that'd need unnecessary extra handling complexity in user side.

from byte-stream.

kelunik avatar kelunik commented on June 4, 2024

There might be e.g. multiple optional parts at stream end, so, when you try to do multiple calls to read until EOL, the optional parts will just end up with null, but that's totally fine.

I do not understand, could you illustrate with an example?

from byte-stream.

ekinhbayar avatar ekinhbayar commented on June 4, 2024

I can see read returning either Promise or null being desirable. I was thinking in case when you try to read from the stream again, maybe multiple times, after it is closed. +1 for an example to see that point clearly, but I understand the preference of null instead of an exception.

from byte-stream.

kelunik avatar kelunik commented on June 4, 2024

@ekinhbayar See 23f5ba9 for an example with an exception instead of null after the first null.

The return type is always Promise, not Promise|null, but the promise resolves to string|null.

from byte-stream.

ekinhbayar avatar ekinhbayar commented on June 4, 2024

@kelunik seems I misinterpreted, I see how it is now.

from byte-stream.

kelunik avatar kelunik commented on June 4, 2024

I think this task has been completed. Everything else is a bug.

from byte-stream.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.