Add placeholder worker disconnect command.

This commit is contained in:
Bartosz Taudul 2019-01-24 18:51:55 +01:00
parent f474669ab5
commit 922993cbbb

View File

@ -283,6 +283,7 @@ public:
bool IsConnected() const { return m_connected.load( std::memory_order_relaxed ); }
bool IsDataStatic() const { return !m_thread.joinable(); }
void Shutdown() { m_shutdown.store( true, std::memory_order_relaxed ); }
void Disconnect() { Shutdown(); } // TODO: Needs proper implementation.
void Write( FileWrite& f );
int GetTraceVersion() const { return m_traceVersion; }