This commit is contained in:
J. Nick Koston
2024-03-07 10:55:23 -10:00
parent 225476a0f8
commit df7d8840c7
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1028,7 +1028,7 @@ class ConfigEntry:
Background tasks are automatically canceled when config entry is unloaded.
This is a background task which is different from a normal task:
A background task is different from a normal task:
- Will not block startup
- Will be automatically cancelled on shutdown
@@ -1057,7 +1057,7 @@ class ConfigEntry:
This type of task is typically used for polling.
This is a periodic task which is different from a normal task:
A periodic task is different from a normal task:
- Will not block startup
- Will be automatically cancelled on shutdown
+2 -2
View File
@@ -674,7 +674,7 @@ class HomeAssistant:
This type of task is for background tasks that usually run for
the lifetime of Home Assistant or an integration's setup.
This is a background task which is different from a normal task:
A background task is different from a normal task:
- Will not block startup
- Will be automatically cancelled on shutdown
@@ -705,7 +705,7 @@ class HomeAssistant:
This type of task is typically used for polling.
This is a periodic task which is different from a normal task:
A periodic task is different from a normal task:
- Will not block startup
- Will be automatically cancelled on shutdown