Coder Social home page Coder Social logo

Comments (8)

jlongster avatar jlongster commented on April 17, 2024

Oh haha. RTFM. It's actually pretty simple:

- (void)loadMesh:(NSString *)path {
    RCT_EXPORT();

    dispatch_async(dispatch_get_main_queue(), ^{
        node.mesh = [REMeshCache meshNamed:path];
    });
}

That works!

from react-native.

vjeux avatar vjeux commented on April 17, 2024

If you are bored, would be awesome to compile this into some sort of docs :)

from react-native.

jlongster avatar jlongster commented on April 17, 2024

If you are bored, would be awesome to compile this into some sort of docs :)

I almost filed an issue about that, actually! I was going to ask if there's a place you want us to contribute to docs. I can certainly write done a bunch of small stuff I've learned. Where would you like it, and what format?

from react-native.

vjeux avatar vjeux commented on April 17, 2024

We're going to have official docs before we open this repo to everyone. They'll be in the docs folder in markdown, the same way React is. If you can start writing them in markdown and in the docs folder with whatever you think is useful for people, that would be awesome!

https://github.com/facebook/react/tree/master/docs/docs

from react-native.

frantic avatar frantic commented on April 17, 2024

Looks like this is a very common pattern - native modules that run on main thread. Maybe we could do something like:

- (void)loadMesh:(NSString *)path {
    RCT_EXPORT_ON_MAIN_THREAD();
    node.mesh = [REMeshCache meshNamed:path];
}

@a2 / @nicklockwood - any thoughts?

from react-native.

a2 avatar a2 commented on April 17, 2024

The JS bridge is meant to be asynchronous and therefore runs off the main thread. I personally think that if something should happen on a specific thread/queue, it is the caller's responsibility. Apple's documentation often says that callbacks can happen on private threads/queues and that you should dispatch if necessary.

from react-native.

frantic avatar frantic commented on April 17, 2024

@a2 great answer, totally makes sense!

from react-native.

nicklockwood avatar nicklockwood commented on April 17, 2024

Whilst @a2 is quite correct, I wonder if it might make sense to change the thread that we call back to modules on to main.

We don't call module methods on the JS thread, we actually call them on the shadow thread, which is a seperate thread used by the RCTUIManager to do layout calculations.

But other than the UIManager, the vast majority of modules either don't care what thread they run on, or would prefer to run their methods on the main thread. Perhaps then, the bridge should call back to main, and the UIManager can dispatch to the shadow thread?

It would save having to dispatch_async inside every single module's methods for the sake of catering to the requirements of one specific module.

from react-native.

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.