Index
Bus
Bases: Resource
Individual event bus instance for a specific owner (e.g., App or Service).
Source code in src/hassette/bus/bus.py
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 | |
sync: BusSyncFacade = self.add_child(BusSyncFacade, bus=self)
instance-attribute
Synchronous facade for registering listeners from sync code (e.g. AppSync hooks).
priority: int = priority
class-attribute
instance-attribute
Priority level for event handlers created by this bus.
config_log_level: LOG_LEVEL_TYPE
property
Return the log level from the config for this resource.
on_shutdown() -> None
async
Cleanup all listeners owned by this bus's owner on shutdown.
Source code in src/hassette/bus/bus.py
152 153 154 | |
on_error(handler: BusErrorHandlerType) -> None
Register an app-level error handler for this bus.
The handler is called when any listener on this bus raises an exception
(including TimeoutError) and the listener does not have its own
per-registration error handler.
This is an app-level fallback — it is resolved at dispatch time, not at listener
registration time. A later call to on_error() replaces any previously registered
handler.
Note: error handlers are spawned as fire-and-forget tasks. Handlers spawned near app shutdown may be cancelled before they complete. Do not rely on error handlers for delivery-critical alerting during system teardown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
BusErrorHandlerType
|
A sync or async callable that accepts a :class: |
required |
Source code in src/hassette/bus/bus.py
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | |
add_listener(listener: Listener) -> None
async
Add a pre-built listener to the bus.
This is the direct entry point for callers that construct a Listener
externally. The normal registration flow (on_state_change, on(),
etc.) goes through _on_internal instead.
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If the listener has no |
DuplicateListenerError
|
If the listener's natural key is already registered on this bus instance. |
Source code in src/hassette/bus/bus.py
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |
register_and_check_collision(listener: Listener) -> None
Register a non-once listener's natural key, raising DuplicateListenerError on a same-session clash.
Mutates the per-bus key registry as a side effect — this is the single point where in-session duplicate detection happens. Once-listeners are exempt and are not registered.
Source code in src/hassette/bus/bus.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |
remove_listener(listener: Listener) -> None
Remove a listener from the bus.
Source code in src/hassette/bus/bus.py
230 231 232 233 234 | |
remove_all_listeners() -> None
Remove all listeners owned by this bus's owner.
Source code in src/hassette/bus/bus.py
236 237 238 239 | |
get_listeners() -> list[Listener]
Get all listeners owned by this bus's owner.
Source code in src/hassette/bus/bus.py
241 242 243 | |
emit(topic: str, data: object) -> None
async
Broadcast data to all subscribers of the given topic.
Subscribers annotated with D.EventData[T] receive data pre-extracted.
If the internal event stream is closed (during shutdown), the event is silently dropped.
Source code in src/hassette/bus/bus.py
245 246 247 248 249 250 251 252 253 | |
on(*, topic: str, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, once: bool = False, debounce: float | None = None, throttle: float | None = None, timeout: float | None = None, timeout_disabled: bool = False, name: str | None = None, on_error: BusErrorHandlerType | None = None) -> Subscription
async
Subscribe to an event topic with optional filtering and modifiers.
This is the public registration method for raw topic subscriptions. This method is
async and must be awaited. Registration completes before the call returns —
sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str
|
The event topic to listen to. |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Optional predicates to filter events. These can be custom callables or predefined predicates from
|
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
once
|
bool
|
If True, the handler will be called only once and then removed. |
False
|
debounce
|
float | None
|
If set, applies a debounce to the handler. |
None
|
throttle
|
float | None
|
If set, applies a throttle to the handler. |
None
|
timeout
|
float | None
|
Per-listener timeout in seconds. Overrides the global event_handler_timeout_seconds config. None means fall through to the config default. |
None
|
timeout_disabled
|
bool
|
When True, disables timeout enforcement for this listener regardless of config. |
False
|
name
|
str | None
|
Required. Stable string identifier for this listener. Forms part of the natural
key |
None
|
on_error
|
BusErrorHandlerType | None
|
Optional per-listener error handler. |
None
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Subscription
|
|
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/bus.py
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | |
on_state_change(entity_id: str, *, handler: HandlerType, changed: bool | ComparisonCondition = True, changed_from: ChangeType = NOT_PROVIDED, changed_to: ChangeType = NOT_PROVIDED, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, immediate: bool = False, duration: float | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to state changes for a specific entity.
This method is async and must be awaited. Registration — routing and database
persistence — completes before the call returns. sub.listener.db_id is a valid
integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID to filter events for (e.g., "media_player.living_room_speaker"). |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
changed
|
bool | ComparisonCondition
|
Whether to filter only events where the state changed. If a ComparisonCondition is provided, it will be used to compare the old and new state values. |
True
|
changed_from
|
ChangeType
|
A value or callable that will be used to filter state changes from this value. |
NOT_PROVIDED
|
changed_to
|
ChangeType
|
A value or callable that will be used to filter state changes to this value. |
NOT_PROVIDED
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events (e.g. ValueIs) or custom callables. These will receive the full event for evaluation. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the natural
key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Subscription
|
removes the listener from routing. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/bus.py
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 | |
on_attribute_change(entity_id: str, attr: str, *, handler: HandlerType, changed: bool | ComparisonCondition = True, changed_from: ChangeType = NOT_PROVIDED, changed_to: ChangeType = NOT_PROVIDED, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, immediate: bool = False, duration: float | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to state change events for a specific entity's attribute.
This method is async and must be awaited. Registration completes before the call
returns. sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID to filter events for (e.g., "media_player.living_room_speaker"). |
required |
attr
|
str
|
The attribute name to filter changes on (e.g., "volume"). |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
changed
|
bool | ComparisonCondition
|
Whether to filter only events where the attribute changed. If a ComparisonCondition is provided, it will be used to compare the old and new attribute values. |
True
|
changed_from
|
ChangeType
|
A value or callable that will be used to filter attribute changes from this value. |
NOT_PROVIDED
|
changed_to
|
ChangeType
|
A value or callable that will be used to filter attribute changes to this value. |
NOT_PROVIDED
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. Stable string identifier. Omitting it raises |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/bus.py
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | |
on_call_service(domain: str | None = None, service: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | Mapping[str, ChangeType] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to service call events.
This method is async and must be awaited. Registration completes before the call
returns. sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str | None
|
The domain to filter service calls (e.g., "light"). |
None
|
service
|
str | None
|
The service to filter service calls (e.g., "turn_on"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | Mapping[str, ChangeType] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. Stable string identifier for this listener. Omitting it raises
|
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/bus.py
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 | |
on_component_loaded(component: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to component loaded events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component
|
str | None
|
The component to filter load events (e.g., "light"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | |
on_service_registered(domain: str | None = None, service: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to service registered events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str | None
|
The domain to filter service registrations (e.g., "light"). |
None
|
service
|
str | None
|
The service to filter service registrations (e.g., "turn_on"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 | |
on_homeassistant_restart(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to Home Assistant restart events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 | |
on_homeassistant_start(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to Home Assistant start events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 | |
on_homeassistant_stop(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to Home Assistant stop events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 | |
on_hassette_service_status(status: ResourceStatus | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to hassette service status events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
status
|
ResourceStatus | None
|
The status to filter events (e.g., ResourceStatus.STARTED). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the
natural key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 | |
on_hassette_service_failed(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to hassette service failed events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the
natural key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 | |
on_hassette_service_crashed(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to hassette service crashed events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 | |
on_hassette_service_started(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to hassette service started events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 | |
on_websocket_connected(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to websocket connected events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 | |
on_websocket_disconnected(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to websocket disconnected events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 | |
on_app_state_changed(*, handler: HandlerType, app_key: str | None = None, status: ResourceStatus | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to app instance state change events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
status
|
ResourceStatus | None
|
Filter events for a specific status. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 | |
on_app_running(*, handler: HandlerType, app_key: str | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to app instances reaching RUNNING status.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 | |
on_app_stopping(*, handler: HandlerType, app_key: str | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
async
Subscribe to app instances entering STOPPING status.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/bus.py
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 | |
BusErrorContext
dataclass
Bases: ErrorContext
Context passed to bus error handlers when a listener raises an exception.
Attributes:
| Name | Type | Description |
|---|---|---|
exception |
BaseException
|
The exception that was raised by the listener. Retains its
|
traceback |
str
|
Formatted traceback string. Always a non-empty string — the design explicitly requires always-populated tracebacks in the user-facing context, unlike the framework's own log suppression which may suppress them. |
topic |
str
|
The topic the listener was registered on. |
listener_name |
str
|
The name of the listener function that raised the exception. |
event |
Event[Any]
|
The event that was being processed when the exception occurred. |
Source code in src/hassette/bus/error_context.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | |
DurationConfig
dataclass
Groups duration-hold configuration fields and owns the timer lifecycle; timer is attached via attach_timer().
Source code in src/hassette/bus/listeners.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | |
entity_id: str
instance-attribute
Entity ID this duration listener is tracking. Required — non-empty.
duration: float | None = None
class-attribute
instance-attribute
Duration in seconds the entity must remain in the matching state before the handler fires. None for immediate-only or entity_id-only listeners.
immediate: bool = False
class-attribute
instance-attribute
If True, fire the handler immediately with the current entity state on registration.
is_attribute_listener: bool = False
class-attribute
instance-attribute
True when this listener was registered via on_attribute_change.
hold_predicate: Predicate | None = None
class-attribute
instance-attribute
State-value predicates only (excludes transition predicates like StateFrom, StateDidChange). Used by DurationTimer for cancel evaluation and fire-time recheck. None when not set.
timer: DurationTimer
property
Return the attached DurationTimer. Asserts it has been attached.
cancel_timer() -> None
Cancel the attached duration timer if present.
Source code in src/hassette/bus/listeners.py
260 261 262 263 | |
attach_timer(task_bucket: TaskBucket, owner_id: str, create_cancel_sub: Callable[[], Subscription], on_cancel: Callable[[], None] | None = None) -> None
Construct a DurationTimer and store it.
BusService calls this method during registration, passing the cancel-subscription factory and on_cancel callback. Counter ownership stays in BusService.
Source code in src/hassette/bus/listeners.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | |
HandlerInvoker
dataclass
Owns handler invocation, async wrapping, parameter injection, rate limiting, and the once-guard.
Source code in src/hassette/bus/listeners.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | |
orig_handler: HandlerType
instance-attribute
Original handler function provided by the user.
async_handler: AsyncHandlerType
instance-attribute
Async-wrapped handler function.
injector: ParameterInjector
instance-attribute
Parameter injector for dependency injection.
kwargs: Mapping[str, Any] | None
instance-attribute
Keyword arguments to pass to the handler.
error_handler: BusErrorHandlerType | None
instance-attribute
Optional per-listener error handler.
app_error_handler_resolver: Callable[[], BusErrorHandlerType | None] | None
instance-attribute
Closure that resolves the app-level error handler at dispatch time.
rate_limiter: RateLimiter | None
instance-attribute
Rate limiter for debounce/throttle. None when no rate limiting is configured.
once: bool = False
class-attribute
instance-attribute
Whether this invoker fires only once. Intentional copy of ListenerOptions.once — dispatch() needs this but cannot back-reference options without a circular dependency.
fired: bool = field(default=False, init=False)
class-attribute
instance-attribute
Guard for once=True: set before the first invocation to prevent double-fire.
create(task_bucket: TaskBucket, handler: HandlerType, kwargs: Mapping[str, Any] | None, options: ListenerOptions, error_handler: BusErrorHandlerType | None = None, app_error_handler_resolver: Callable[[], BusErrorHandlerType | None] | None = None) -> HandlerInvoker
classmethod
Construct a HandlerInvoker from a handler and options.
Builds the async wrapper, injector, and rate limiter. Copies options.once.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_bucket
|
TaskBucket
|
TaskBucket for async adapter and rate limiter. |
required |
handler
|
HandlerType
|
The user-supplied handler callable. |
required |
kwargs
|
Mapping[str, Any] | None
|
Optional keyword arguments to pass to the handler. |
required |
options
|
ListenerOptions
|
Behavioral options (once, debounce, throttle). |
required |
error_handler
|
BusErrorHandlerType | None
|
Optional per-listener error handler. |
None
|
app_error_handler_resolver
|
Callable[[], BusErrorHandlerType | None] | None
|
Closure for app-level error handler resolution. |
None
|
Source code in src/hassette/bus/listeners.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | |
mark_fired() -> None
Mark this once-invoker as having fired. Called by dispatch() and Listener.cancel().
Source code in src/hassette/bus/listeners.py
184 185 186 | |
set_app_error_handler_resolver(resolver: Callable[[], BusErrorHandlerType | None]) -> None
Set the closure that resolves the app-level error handler at dispatch time.
Source code in src/hassette/bus/listeners.py
188 189 190 | |
dispatch(invoke_fn: Callable[[], Awaitable[None]]) -> None
async
Apply rate limiting around the given invoke function.
BusService builds the invoke function (internal error-catching or tracked telemetry), HandlerInvoker wraps it with rate limiting. BusService never touches the RateLimiter directly.
Includes once-guard: if once=True and the invoker has already fired,
this method returns immediately. Safe without a lock — no await between
check-and-set.
Source code in src/hassette/bus/listeners.py
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | |
cancel() -> None
Cancel any pending rate-limiter tasks.
Source code in src/hassette/bus/listeners.py
213 214 215 216 | |
invoke(event: Event[Any]) -> None
async
Invoke the handler with dependency injection.
Source code in src/hassette/bus/listeners.py
218 219 220 221 | |
Listener
dataclass
A listener for events with a specific topic and handler.
Composes four focused sub-structs (identity, invoker, options, duration_config) plus routing fields (topic, predicate) and minimal runtime state.
Source code in src/hassette/bus/listeners.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | |
logger: Logger
instance-attribute
Logger for the listener.
topic: str
instance-attribute
Topic the listener is subscribed to.
predicate: Predicate | None
instance-attribute
Predicate to filter events before invoking the handler.
identity: ListenerIdentity
instance-attribute
Ownership and telemetry identity fields.
invoker: HandlerInvoker
instance-attribute
Handler callable, dispatch engine, and once-guard.
options: ListenerOptions
instance-attribute
Behavioral execution parameters.
duration_config: DurationConfig | None
instance-attribute
Duration-hold configuration and timer. None for non-duration listeners.
listener_id: int = field(default_factory=next_id, init=False)
class-attribute
instance-attribute
Unique identifier for the listener instance.
db_id: int | None = field(default=None, init=False)
class-attribute
instance-attribute
Database row ID for this listener. Set by the executor after persistence; None until then.
is_cancelled: bool
property
Whether this listener has been cancelled. Read-only — use cancel() to set.
mark_registered(db_id: int) -> None
Set the database ID after persistence. One-time assignment by BusService.
Source code in src/hassette/bus/listeners.py
334 335 336 337 338 339 340 341 342 343 344 | |
cancel() -> None
Cancel the listener: set the cancelled flag and stop any pending tasks.
Sets _cancelled flag, calls invoker.mark_fired() to prevent handler invocation on any in-flight dispatch task, and cancels rate limiter and duration timer.
Terminal operation: the listener must not be reused after this call.
Source code in src/hassette/bus/listeners.py
346 347 348 349 350 351 352 353 354 355 356 357 358 | |
matches(ev: Event[Any]) -> bool
Check if the event matches the listener's predicate.
Source code in src/hassette/bus/listeners.py
360 361 362 363 364 365 366 367 368 | |
create(topic: str, identity: ListenerIdentity, options: ListenerOptions, invoker: HandlerInvoker, where: Predicate | Sequence[Predicate] | None = None, duration_config: DurationConfig | None = None, logger: Logger = LOGGER) -> Listener
classmethod
Create a Listener from pre-built sub-structs.
Cross-concern validation (duration + debounce incompatibility) runs here since it spans two sub-structs.
Source code in src/hassette/bus/listeners.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
create_cancel_listener(task_bucket: TaskBucket, owner_id: str, topic: str, handler: HandlerType, predicate: Predicate | None = None) -> Listener
classmethod
Create a framework cancel-listener with sensible defaults.
Produces a listener with source_tier='framework'. No rate limiter, no error handler, no duration config.
Source code in src/hassette/bus/listeners.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 | |
ListenerIdentity
dataclass
Groups ownership and telemetry fields that identify who registered a listener and where it came from.
Source code in src/hassette/bus/listeners.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | |
owner_id: str
instance-attribute
Unique string identifier for the owner of the listener.
handler_name: str
instance-attribute
Human-readable fully-qualified name for the handler, computed once at creation time.
handler_short_name: str
instance-attribute
Short (last-segment) name for the handler, computed once at creation time.
app_key: str = ''
class-attribute
instance-attribute
Configuration-level app key for DB registration (e.g., 'my_app'). Empty for non-App owners.
instance_index: int = 0
class-attribute
instance-attribute
App instance index for DB registration. 0 for non-App owners.
name: str | None = None
class-attribute
instance-attribute
Optional stable name for the listener (the name= escape hatch on Bus.on()).
source_tier: SourceTier = 'app'
class-attribute
instance-attribute
Whether this listener originates from a user app or the framework itself.
source_location: str = ''
class-attribute
instance-attribute
Captured source location (file:line) of the user code that registered this listener.
registration_source: str = ''
class-attribute
instance-attribute
Captured source code snippet of the registration call.
ListenerOptions
dataclass
Behavioral timing parameters (once, debounce, throttle, timeout, priority) with validation.
Source code in src/hassette/bus/listeners.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | |
once: bool = False
class-attribute
instance-attribute
Whether the listener should be removed after one invocation.
debounce: float | None = None
class-attribute
instance-attribute
Debounce delay in seconds. Events reset the timer; handler fires after the quiet period.
throttle: float | None = None
class-attribute
instance-attribute
Throttle interval in seconds. At most one handler execution per window; extras are dropped.
timeout: float | None = None
class-attribute
instance-attribute
Per-listener timeout in seconds. Overrides the global event_handler_timeout_seconds config. None means fall through to the config default.
timeout_disabled: bool = False
class-attribute
instance-attribute
When True, disables timeout enforcement for this listener regardless of config.
priority: int = 0
class-attribute
instance-attribute
Priority for listener ordering. Higher values run first. Default is 0 for app handlers.
Subscription
dataclass
A subscription to an event topic with a specific listener key.
This class is used to manage the lifecycle of a listener, allowing it to be cancelled or managed within a context.
Source code in src/hassette/bus/listeners.py
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | |
listener: Listener
instance-attribute
The listener associated with this subscription.
unsubscribe: Callable[[], None]
instance-attribute
Function to call to unsubscribe the listener.
cancel() -> None
Cancel the subscription by calling the unsubscribe function.
Source code in src/hassette/bus/listeners.py
465 466 467 | |
BusSyncFacade
Bases: Resource
Synchronous facade for the event bus.
This class provides synchronous methods that wrap the asynchronous registration methods of
the Bus class, allowing listeners to be registered from synchronous code (for example, an
AppSync lifecycle hook running in a worker thread).
These methods must not be called from within the event loop; doing so raises a RuntimeError.
Use the asynchronous methods on Bus directly when operating within an event loop.
Source code in src/hassette/bus/sync.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 | |
add_listener(listener: Listener) -> None
Add a pre-built listener to the bus.
This is the direct entry point for callers that construct a Listener
externally. The normal registration flow (on_state_change, on(),
etc.) goes through _on_internal instead.
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If the listener has no |
DuplicateListenerError
|
If the listener's natural key is already registered on this bus instance. |
Source code in src/hassette/bus/sync.py
53 54 55 56 57 58 59 60 61 62 63 64 65 | |
emit(topic: str, data: object) -> None
Broadcast data to all subscribers of the given topic.
Subscribers annotated with D.EventData[T] receive data pre-extracted.
If the internal event stream is closed (during shutdown), the event is silently dropped.
Source code in src/hassette/bus/sync.py
67 68 69 70 71 72 73 | |
on(*, topic: str, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, once: bool = False, debounce: float | None = None, throttle: float | None = None, timeout: float | None = None, timeout_disabled: bool = False, name: str | None = None, on_error: BusErrorHandlerType | None = None) -> Subscription
Subscribe to an event topic with optional filtering and modifiers.
This is the public registration method for raw topic subscriptions.
Registration completes before the call returns —
sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
topic
|
str
|
The event topic to listen to. |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Optional predicates to filter events. These can be custom callables or predefined predicates from
|
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
once
|
bool
|
If True, the handler will be called only once and then removed. |
False
|
debounce
|
float | None
|
If set, applies a debounce to the handler. |
None
|
throttle
|
float | None
|
If set, applies a throttle to the handler. |
None
|
timeout
|
float | None
|
Per-listener timeout in seconds. Overrides the global event_handler_timeout_seconds config. None means fall through to the config default. |
None
|
timeout_disabled
|
bool
|
When True, disables timeout enforcement for this listener regardless of config. |
False
|
name
|
str | None
|
Required. Stable string identifier for this listener. Forms part of the natural
key |
None
|
on_error
|
BusErrorHandlerType | None
|
Optional per-listener error handler. |
None
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Subscription
|
|
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/sync.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | |
on_state_change(entity_id: str, *, handler: HandlerType, changed: bool | ComparisonCondition = True, changed_from: ChangeType = NOT_PROVIDED, changed_to: ChangeType = NOT_PROVIDED, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, immediate: bool = False, duration: float | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to state changes for a specific entity.
Registration — routing and database
persistence — completes before the call returns. sub.listener.db_id is a valid
integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID to filter events for (e.g., "media_player.living_room_speaker"). |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
changed
|
bool | ComparisonCondition
|
Whether to filter only events where the state changed. If a ComparisonCondition is provided, it will be used to compare the old and new state values. |
True
|
changed_from
|
ChangeType
|
A value or callable that will be used to filter state changes from this value. |
NOT_PROVIDED
|
changed_to
|
ChangeType
|
A value or callable that will be used to filter state changes to this value. |
NOT_PROVIDED
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events (e.g. ValueIs) or custom callables. These will receive the full event for evaluation. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the natural
key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Subscription
|
removes the listener from routing. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/sync.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
on_attribute_change(entity_id: str, attr: str, *, handler: HandlerType, changed: bool | ComparisonCondition = True, changed_from: ChangeType = NOT_PROVIDED, changed_to: ChangeType = NOT_PROVIDED, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, immediate: bool = False, duration: float | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to state change events for a specific entity's attribute.
Registration completes before the call
returns. sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
entity_id
|
str
|
The entity ID to filter events for (e.g., "media_player.living_room_speaker"). |
required |
attr
|
str
|
The attribute name to filter changes on (e.g., "volume"). |
required |
handler
|
HandlerType
|
The function to call when the event matches. |
required |
changed
|
bool | ComparisonCondition
|
Whether to filter only events where the attribute changed. If a ComparisonCondition is provided, it will be used to compare the old and new attribute values. |
True
|
changed_from
|
ChangeType
|
A value or callable that will be used to filter attribute changes from this value. |
NOT_PROVIDED
|
changed_to
|
ChangeType
|
A value or callable that will be used to filter attribute changes to this value. |
NOT_PROVIDED
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. Stable string identifier. Omitting it raises |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/sync.py
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |
on_call_service(domain: str | None = None, service: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | Mapping[str, ChangeType] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to service call events.
Registration completes before the call
returns. sub.listener.db_id is a valid integer immediately on return.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str | None
|
The domain to filter service calls (e.g., "light"). |
None
|
service
|
str | None
|
The service to filter service calls (e.g., "turn_on"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | Mapping[str, ChangeType] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. Stable string identifier for this listener. Omitting it raises
|
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object. |
Raises:
| Type | Description |
|---|---|
ListenerNameRequiredError
|
If |
DuplicateListenerError
|
If a listener with the same |
Source code in src/hassette/bus/sync.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | |
on_component_loaded(component: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to component loaded events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
component
|
str | None
|
The component to filter load events (e.g., "light"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | |
on_service_registered(domain: str | None = None, service: str | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to service registered events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
domain
|
str | None
|
The domain to filter service registrations (e.g., "light"). |
None
|
service
|
str | None
|
The service to filter service registrations (e.g., "turn_on"). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | |
on_homeassistant_restart(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to Home Assistant restart events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | |
on_homeassistant_start(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to Home Assistant start events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | |
on_homeassistant_stop(handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to Home Assistant stop events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | |
on_hassette_service_status(status: ResourceStatus | None = None, *, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to hassette service status events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
status
|
ResourceStatus | None
|
The status to filter events (e.g., ResourceStatus.STARTED). |
None
|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the
natural key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | |
on_hassette_service_failed(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to hassette service failed events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Required. A stable string identifier for this listener. Forms part of the
natural key |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 | |
on_hassette_service_crashed(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to hassette service crashed events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 | |
on_hassette_service_started(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to hassette service started events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | |
on_websocket_connected(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to websocket connected events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 | |
on_websocket_disconnected(*, handler: HandlerType, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to websocket disconnected events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 | |
on_app_state_changed(*, handler: HandlerType, app_key: str | None = None, status: ResourceStatus | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, on_error: BusErrorHandlerType | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to app instance state change events.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
status
|
ResourceStatus | None
|
Filter events for a specific status. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 | |
on_app_running(*, handler: HandlerType, app_key: str | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to app instances reaching RUNNING status.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | |
on_app_stopping(*, handler: HandlerType, app_key: str | None = None, where: Predicate | Sequence[Predicate] | None = None, kwargs: Mapping[str, Any] | None = None, name: str | None = None, **opts: Unpack[Options]) -> Subscription
Subscribe to app instances entering STOPPING status.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
HandlerType
|
The function to call when the event matches. |
required |
app_key
|
str | None
|
Filter events for a specific app key. |
None
|
where
|
Predicate | Sequence[Predicate] | None
|
Additional predicates to filter events. |
None
|
kwargs
|
Mapping[str, Any] | None
|
Keyword arguments to pass to the handler. |
None
|
name
|
str | None
|
Stable name for this listener. Required on all DB-registered listeners. |
None
|
**opts
|
Unpack[Options]
|
Additional options like |
{}
|
Returns:
| Type | Description |
|---|---|
Subscription
|
A subscription object that can be used to manage the listener. |
Source code in src/hassette/bus/sync.py
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | |
on_error(handler: BusErrorHandlerType) -> None
Register an app-level error handler for this bus.
The handler is called when any listener on this bus raises an exception
(including TimeoutError) and the listener does not have its own
per-registration error handler.
This is an app-level fallback — it is resolved at dispatch time, not at listener
registration time. A later call to on_error() replaces any previously registered
handler.
Note: error handlers are spawned as fire-and-forget tasks. Handlers spawned near app shutdown may be cancelled before they complete. Do not rely on error handlers for delivery-critical alerting during system teardown.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
handler
|
BusErrorHandlerType
|
A sync or async callable that accepts a :class: |
required |
Source code in src/hassette/bus/sync.py
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 | |
remove_listener(listener: Listener) -> None
Remove a listener from the bus.
Source code in src/hassette/bus/sync.py
702 703 704 705 | |
remove_all_listeners() -> None
Remove all listeners owned by this bus's owner.
Source code in src/hassette/bus/sync.py
707 708 709 710 | |
get_listeners() -> list[Listener]
Get all listeners owned by this bus's owner.
Source code in src/hassette/bus/sync.py
712 713 714 715 | |