forked from redis/hiredis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure to disconnect the adapter in the destructor
- Loading branch information
Showing
2 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/*- | ||
* Copyright (C) 2014 Pietro Cerutti <[email protected]> | ||
* | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
|
@@ -9,7 +9,7 @@ | |
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in the | ||
* documentation and/or other materials provided with the distribution. | ||
* | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
|
@@ -69,19 +69,27 @@ class RedisQtAdapter : public QObject { | |
} | ||
|
||
public: | ||
RedisQtAdapter(QObject * parent = 0) | ||
RedisQtAdapter(QObject * parent = 0) | ||
: QObject(parent), m_ctx(0), m_read(0), m_write(0) { } | ||
|
||
~RedisQtAdapter() { } | ||
~RedisQtAdapter() { | ||
if (m_ctx != 0) { | ||
m_ctx->ev.data = NULL; | ||
} | ||
} | ||
|
||
void setContext(redisAsyncContext * ac) { | ||
int setContext(redisAsyncContext * ac) { | ||
if (ac->ev.data != NULL) { | ||
return REDIS_ERR; | ||
} | ||
m_ctx = ac; | ||
m_ctx->ev.data = this; | ||
m_ctx->ev.addRead = RedisQtAddRead; | ||
m_ctx->ev.delRead = RedisQtDelRead; | ||
m_ctx->ev.addWrite = RedisQtAddWrite; | ||
m_ctx->ev.delWrite = RedisQtDelWrite; | ||
m_ctx->ev.cleanup = RedisQtCleanup; | ||
return REDIS_OK; | ||
} | ||
|
||
private: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ class ExampleQt : public QObject { | |
|
||
signals: | ||
void finished(); | ||
|
||
public slots: | ||
void run(); | ||
|
||
|