(self, session_id: str)
| 282 | return rt |
| 283 | |
| 284 | def touch(self, session_id: str) -> None: |
| 285 | with self._lock: |
| 286 | if session_id in self._sessions: |
| 287 | self._sessions[session_id].touch() |
| 288 | |
| 289 | def destroy(self, session_id: str) -> None: |
| 290 | with self._lock: |