NuriaProject Framework  0.1
The NuriaProject Framework
sessionmanager.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_SESSIONMANAGER_HPP
18 #define NURIA_SESSIONMANAGER_HPP
19 
20 #include "abstractsessionmanager.hpp"
21 #include "essentials.hpp"
22 
23 namespace Nuria {
24 
25 class SessionManagerPrivate;
26 
38 class NURIA_CORE_EXPORT SessionManager : public AbstractSessionManager {
39  Q_OBJECT
40 public:
45  explicit SessionManager (int maxSessions = 1000, QObject *parent = 0);
46  ~SessionManager ();
47 
48 
52  int maxSessions ();
53 
55  void setMaxSessions (int maxSessions);
56 
57  bool exists (const QByteArray &id) const override;
58  Session get (const QByteArray &id) override;
59 
60 public slots:
61  virtual void removeSession (const QByteArray &id) override;
62 
63 private:
64  SessionManagerPrivate *d_ptr;
65 };
66 
67 }
68 
69 #endif // NURIA_SESSIONMANAGER_HPP
Provides an AbstractSessionManager with memory-based storage.
Definition: sessionmanager.hpp:38
Definition: abstractsessionmanager.hpp:24
Interface for a session manager.
Definition: abstractsessionmanager.hpp:54
A data storage managed by an AbstractSessionManager.
Definition: session.hpp:44