py_main_thread_func | R Documentation |
Beginning with reticulate v1.39.0, every R function is a "main thread func". Usage of py_main_thread_func()
is no longer necessary.
py_main_thread_func(f)
f |
An R function with arbitrary arguments |
This function is helpful when you need to provide a callback to a Python
library which may invoke the callback on a background thread. As R functions
must run on the main thread, wrapping the R function with py_main_thread_func()
will ensure that R code is only executed on the main thread.
A Python function that delegates to the passed R function, which is guaranteed to always be called on the main thread.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.