mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
Renamed the method used for adding sessions.
This commit is contained in:
parent
bde712d54b
commit
d29719a98d
@ -11,7 +11,7 @@ YACReaderHttpSessionStore::YACReaderHttpSessionStore(HttpSessionStore *sessionSt
|
|||||||
cleanupTimer.start(60000);
|
cleanupTimer.start(60000);
|
||||||
}
|
}
|
||||||
|
|
||||||
void YACReaderHttpSessionStore::setYACReaderHttpSession(const QByteArray &httpSessionId, YACReaderHttpSession *yacreaderHttpSession)
|
void YACReaderHttpSessionStore::addYACReaderHttpSession(const QByteArray &httpSessionId, YACReaderHttpSession *yacreaderHttpSession)
|
||||||
{
|
{
|
||||||
QMutexLocker locker(&mutex);
|
QMutexLocker locker(&mutex);
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ class YACReaderHttpSessionStore : public QObject
|
|||||||
public:
|
public:
|
||||||
explicit YACReaderHttpSessionStore(HttpSessionStore *sessionStore, QObject *parent = 0);
|
explicit YACReaderHttpSessionStore(HttpSessionStore *sessionStore, QObject *parent = 0);
|
||||||
|
|
||||||
void setYACReaderHttpSession(const QByteArray & httpSessionId, YACReaderHttpSession *yacreaderHttpSession);
|
void addYACReaderHttpSession(const QByteArray & httpSessionId, YACReaderHttpSession *yacreaderHttpSession);
|
||||||
YACReaderHttpSession *getYACReaderSessionHttpSession(const QByteArray & httpSessionId);
|
YACReaderHttpSession *getYACReaderSessionHttpSession(const QByteArray & httpSessionId);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user