MCPcopy Index your code
hub / github.com/reactive-python/reactpy / render

Method render

src/py/reactpy/reactpy/core/layout.py:130–134  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

128 )
129
130 async def render(self) -> LayoutUpdateMessage:
131 if REACTPY_ASYNC_RENDERING.current:
132 return await self._parallel_render()
133 else: # nocov
134 return await self._serial_render()
135
136 async def _serial_render(self) -> LayoutUpdateMessage: # nocov
137 """Await the next available render. This will block until a component is updated"""

Callers 6

useImportSourceFunction · 0.45
loadImportSourceFunction · 0.45
_render_componentMethod · 0.45
_single_outgoing_loopFunction · 0.45
bindFunction · 0.45

Calls 2

_parallel_renderMethod · 0.95
_serial_renderMethod · 0.95