Emitted when a session moves to the background (TUI+server mode).
| 968 | |
| 969 | @dataclass |
| 970 | class SessionBackgroundEvent(SessionLifecycleEventBase): |
| 971 | """Emitted when a session moves to the background (TUI+server mode).""" |
| 972 | |
| 973 | type: ClassVar[Literal["session.background"]] = "session.background" |
| 974 | |
| 975 | |
| 976 | SessionLifecycleEvent = ( |
no outgoing calls
no test coverage detected
searching dependent graphs…