From 55572ff2527a2335d78439bca96ffd96631c6da6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 14 May 2024 12:20:40 +0900 Subject: [PATCH] more docs --- docs/asyncio_thread_safety.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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`.