Git Product home page Git Product logo

Comments (5)

brendanzab avatar brendanzab commented on August 25, 2024

One way could be to have a separate channel for each type of message. Another is to have multiple 'command builder' things that communicate with the platform thread individually.

from gfx.

 avatar commented on August 25, 2024

Could the enumeration be done by the client rather then the server? The CallNewProgram includes the handle that the program can use to refer to the shader program later.

from gfx.

photex avatar photex commented on August 25, 2024

I might be misunderstanding some part of this, but if you ever need a response from the other side and don't want to move to a promise architecture I think it's actually not such a bad thing to have to wait for the returned value.

You can just move the "waiting" out of each call and handle replies independently:

foo.create_program(...);
foo.create_program(...);
foo.create_mesh(...);
/// blah blah blah
loop {
    match foo.nextReply() {
        ReplyProgram(handle) => // put this handle someplace
        ReplyFooBarBizBaz(handle) => // ditto
        _ => log.error("Unexpected response!")
    }
}

from gfx.

kvark avatar kvark commented on August 25, 2024

A semi-consensus has been reached to create the handle immediately, load the resource any time later until it's used, and report back a possible error in a designated channel. This is blocked by #22. Please feel free to experiment and propose new ideas (or argument for the existing ones) - nothing is set in stone until a particular PR is accepted.

from gfx.

kvark avatar kvark commented on August 25, 2024

No longer blocked as of f36d7c9. Implementing the idea will render #9 either irrelevant or impossible.

from gfx.

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.