From 892cff753742e797b1239bae42580ae99f27ad30 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 21 Aug 2022 03:02:11 +0200 Subject: [PATCH] Added a description for the HTTPSession class. --- modules/web/doc_classes/HTTPSession.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/web/doc_classes/HTTPSession.xml b/modules/web/doc_classes/HTTPSession.xml index 7da757843..024f4f08a 100644 --- a/modules/web/doc_classes/HTTPSession.xml +++ b/modules/web/doc_classes/HTTPSession.xml @@ -1,8 +1,11 @@ + The HTTPSession class represents a user's session. + The HTTPSession class represents a user's session. It can store any kind data thanks to Variants. It's used by [HTTPSessionManager] in tandem with cookies to provide per session data storage facilities. + It contains a mutex, because a session / user can make more than one queries to a server at once (For example by opening multiple tabs in a browser), and these are handled by the framework asynchronously.