Documentation
This commit is contained in:
parent
fafda5a07f
commit
ccae3685ac
2 changed files with 6 additions and 1 deletions
|
|
@ -11,6 +11,11 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
|
/** \brief Class that handles asynchronous execution of queries.
|
||||||
|
*
|
||||||
|
* Queries are passed to this class with a routine to call on completion
|
||||||
|
* when the result is on that routine is called.
|
||||||
|
*/
|
||||||
class ASyncDBConnection {
|
class ASyncDBConnection {
|
||||||
public:
|
public:
|
||||||
enum class State {
|
enum class State {
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ typedef std::shared_ptr<ExplainTreeModelItem> ExplainTreeModelItemPtr;
|
||||||
* 5. loops
|
* 5. loops
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \brief Model class for displaying the explain of a query in a tree like format.
|
/** \brief Class for the nodes in the QueryExplainModel
|
||||||
*/
|
*/
|
||||||
class ExplainTreeModelItem: public std::enable_shared_from_this<ExplainTreeModelItem> {
|
class ExplainTreeModelItem: public std::enable_shared_from_this<ExplainTreeModelItem> {
|
||||||
public:
|
public:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue