Giter Site home page Giter Site logo

Comments (4)

alexcrichton avatar alexcrichton commented on June 12, 2024

Thanks for the report! The cause here is that a TaskData will panic if accessed with the wrong task. For each connection in this example, there's three tasks in play. One is the task which is driving the acceptance of new sockets. Another is the task for each socket with pair.map(...).forget(). The final one is the read_exact(..).forget().

The TaskIo structure binds the I/O to one particular task, and it will panic if used with another task. Here it's bound to the second task, pair.map(..).forget(), but then when used with read_exact(..).forget() it panics.

The fix here is to change the final map to an and_then as well as removing the .forget() on the read_exact. Does that make sense?

from futures-rs.

Antti avatar Antti commented on June 12, 2024

@alexcrichton I managed to make it work (in a similar way to what you suggested), by following the "echo.rs" example more closely.
Is it possible to encode TaskData relations on the type level, so that the given example won't compile, rather then panicking on the runtime?

from futures-rs.

alexcrichton avatar alexcrichton commented on June 12, 2024

Unfortunately we don't have a great way of doing that that doesn't hinder the ergonomics to the point of making it unusable :(

from futures-rs.

alexcrichton avatar alexcrichton commented on June 12, 2024

For now I'm going to close this as intended behavior, but let me know if you need any help!

from futures-rs.

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.