GithubHelp home page GithubHelp logo

Comments (2)

rikkertkoppes avatar rikkertkoppes commented on July 22, 2024

I've been researching this a bit. It all works fine with maps, but fails with filters when they actually start filtering.

Core of the problem is that the firstgoroutine yielding on the channel put, but the value actually never gets put due to the filter. However, the goroutine is still suspended and resumes after the next successfull put (one that makes it through the filter)

Result is that the whole channel is out of sync.

No idea how to resolve it though, resuming the goroutine manually (next()) when the filter blocks seems awkward.

Maybe the solution lies in delegating the yield? (yield*) That would require rewriting channel.put and delegating the yield all the way to the adder (the transducer on the channel). That one would then yield or not.

from js-csp.

ubolonton avatar ubolonton commented on July 22, 2024

The problem is that the reducing function add doesn't sit on the "straight-from-put-to-pending-take" path, where the buffer is not taken into account.

In core.async this was fixed by forcing all values to go through the reducing function first clojure/core.async@ad0ca86#diff-619df063e9a19af51078b3b476c49d0cL36

I still feel something is off in core.async though, specifically not being able to use transducer in a buffer-less channel.

from js-csp.

Related Issues (11)

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.