diff --git a/docs/asyncio_thread_safety.md b/docs/asyncio_thread_safety.md index 5fe6d174..cba400c8 100644 --- a/docs/asyncio_thread_safety.md +++ b/docs/asyncio_thread_safety.md @@ -135,3 +135,15 @@ The floor registry must be modified in the event loop thread. There is no sync A #### floor_registry.async_update The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_update`. + +#### label_registry.async_create + +The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_create`. + +#### label_registry.async_delete + +The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_delete`. + +#### label_registry.async_update + +The label registry must be modified in the event loop thread. There is no sync API for the label registry. Use `hass.add_job` to schedule a function in the event loop that calls `label_registry.async_updat`.