Get the ConnectionHandler for this context. Creates a new ConnectionHandler on first access (lazy initialization). The handler uses instance-level storage for true isolation between contexts. Returns: The ConnectionHandler instance owned by this context
(self)
| 160 | |
| 161 | @property |
| 162 | def connections(self) -> ConnectionHandler: |
| 163 | """ |
| 164 | Get the ConnectionHandler for this context. |
| 165 | |
| 166 | Creates a new ConnectionHandler on first access (lazy initialization). |
| 167 | The handler uses instance-level storage for true isolation between contexts. |
| 168 | |
| 169 | Returns: |
| 170 | The ConnectionHandler instance owned by this context. |
| 171 | """ |
| 172 | if self._connections is None: |
| 173 | # ConnectionHandler always uses instance storage for isolation |
| 174 | self._connections = ConnectionHandler() |
| 175 | return self._connections |
| 176 | |
| 177 | @property |
| 178 | def apps(self) -> Apps | None: |
nothing calls this directly
no test coverage detected