moved statistics to listener

This commit is contained in:
Dhanya Maliakal
2017-08-18 16:50:19 +02:00
parent e93f53f459
commit 608f292e4f
3 changed files with 41 additions and 5 deletions

View File

@ -189,6 +189,11 @@ class Listener : private virtual slsReceiverDefs, public ThreadObject {
*/
uint32_t CreateAnImage(char* buf);
/**
* Print Fifo Statistics
*/
void PrintFifoStatistics();
/** type of thread */
@ -281,5 +286,9 @@ class Listener : private virtual slsReceiverDefs, public ThreadObject {
/** if the udp socket is connected */
bool udpSocketAlive;
uint32_t numPacketsStatistic;
uint32_t numFramesStatistic;
};