We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Idea:
def some_method rmq.app.async do load_something_that_takes_a_long_time rmq.app.main do update_the_ui end end end
In RedPotion:
def some_method app.async do load_something_that_takes_a_long_time app.main do update_the_ui end end end
Allow an optional queue name:
def some_method app.async queue: "com.clearsightstudio.myapp" do end end
Also the ability to make main synchronous within the current context:
main
def some_method app.async do app.main sync: true do end # won't run this until the above finishes end end
Thoughts?
The text was updated successfully, but these errors were encountered:
Initially cache the data for the table.
920b61d
That's great. app.main is a bit obscure, however, if you see it without context.
app.main
Sorry, something went wrong.
app.main_thread?
app.main_thread
Me gusta.
No branches or pull requests
Idea:
In RedPotion:
Allow an optional queue name:
Also the ability to make
main
synchronous within the current context:Thoughts?
The text was updated successfully, but these errors were encountered: