|
|
|
|
|
|
|
|
| get_redis_expiration_time(self,
app,
session) |
source code
|
|
|
|
open_session(self,
app,
request)
This method has to be implemented and must either return `None` in
case the loading failed because of a configuration error or an
instance of a session object which implements a dictionary like
interface + the methods and attributes on :class:`SessionMixin`. |
source code
|
|
|
|
save_session(self,
app,
session,
response)
This is called for actual sessions returned by :meth:`open_session`
at the end of the request. |
source code
|
|
|
Inherited from flask.sessions.SessionInterface:
get_cookie_domain,
get_cookie_httponly,
get_cookie_path,
get_cookie_secure,
get_expiration_time,
is_null_session,
make_null_session
|