From 91514ae62e1d8c244b0257ff9748daff61a6117f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 14 May 2024 12:19:30 +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 8be1aa7d..5fe6d174 100644 --- a/docs/asyncio_thread_safety.md +++ b/docs/asyncio_thread_safety.md @@ -123,3 +123,15 @@ The entity registry must be modified in the event loop thread. There is no sync #### entity_registry.async_update_entity The entity registry must be modified in the event loop thread. There is no sync API for the entity registry. Use `hass.add_job` to schedule a function in the event loop that calls `entity_registry.async_update_entity`. + +#### floor_registry.async_create + +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_create`. + +#### floor_registry.async_delete + +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_delete`. + +#### 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`.