diff options
author | leak <leak@bitmx.net> | 2014-06-30 18:37:23 +0200 |
---|---|---|
committer | leak <leak@bitmx.net> | 2014-06-30 18:37:23 +0200 |
commit | d39a013b6b979a5158bf86c37a197cb902b2c2f9 (patch) | |
tree | d39b71809197052500bdbc7399276aa15dd96ee8 /src/server/shared/Database/SQLOperation.h | |
parent | 9588c1d92b20573c2bd214b44a15e41fd8cf35b4 (diff) |
Replaced ACE_Task_Base based DatabaseWorker with PCQ
Note: Not exactly sure how shutdown should be handled, currently the queue clears itself out before shutting down
This might need to be changed if the queue should be fully processed before being deleted
Diffstat (limited to 'src/server/shared/Database/SQLOperation.h')
-rw-r--r-- | src/server/shared/Database/SQLOperation.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/server/shared/Database/SQLOperation.h b/src/server/shared/Database/SQLOperation.h index 6f933a051e3..64fc64e2c2e 100644 --- a/src/server/shared/Database/SQLOperation.h +++ b/src/server/shared/Database/SQLOperation.h @@ -18,9 +18,6 @@ #ifndef _SQLOPERATION_H #define _SQLOPERATION_H -#include <ace/Method_Request.h> -#include <ace/Activation_Queue.h> - #include "QueryResult.h" //- Forward declare (don't include header to prevent circular includes) @@ -56,7 +53,7 @@ union SQLResultSetUnion class MySQLConnection; -class SQLOperation : public ACE_Method_Request +class SQLOperation { public: SQLOperation(): m_conn(NULL) { } |