(self)
| 142 | return json.loads(text) |
| 143 | |
| 144 | async def iter_text(self) -> AsyncIterator[str]: |
| 145 | try: |
| 146 | while True: |
| 147 | yield await self.receive_text() |
| 148 | except WebSocketDisconnect: |
| 149 | pass |
| 150 | |
| 151 | async def iter_bytes(self) -> AsyncIterator[bytes]: |
| 152 | try: |