This is called at the end of each request, after generating a response, before removing the request context. It is skipped if :meth:`is_null_session` returns ``True``.
(
self, app: Flask, session: SessionMixin, response: Response
)
| 261 | raise NotImplementedError() |
| 262 | |
| 263 | def save_session( |
| 264 | self, app: Flask, session: SessionMixin, response: Response |
| 265 | ) -> None: |
| 266 | """This is called at the end of each request, after generating |
| 267 | a response, before removing the request context. It is skipped |
| 268 | if :meth:`is_null_session` returns ``True``. |
| 269 | """ |
| 270 | raise NotImplementedError() |
| 271 | |
| 272 | |
| 273 | session_json_serializer = TaggedJSONSerializer() |
no outgoing calls