mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-15 12:50:49 +02:00
- Util::RunInThread to run a lambda in a thread - App exit handling cleanup - EXMgr uses an id for clients now - EXMgr keeps track of lagging clients - EXMgr more aggressive with reconnects if no valid exclients - Nits and refactorings and misc. cleanup
16 lines
142 B
C++
16 lines
142 B
C++
#include "Mgr.h"
|
|
|
|
Mgr::Mgr(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
Mgr::~Mgr()
|
|
{
|
|
}
|
|
|
|
Mgr::Stats
|
|
Mgr::stats() const
|
|
{
|
|
return Stats();
|
|
}
|