2017-04-01 16:35:56 +08:00
|
|
|
/*
|
|
|
|
|
* MediaSender.h
|
|
|
|
|
*
|
|
|
|
|
* Created on: 2016年9月1日
|
|
|
|
|
* Author: xzl
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_MEDIASENDER_H_
|
|
|
|
|
#define SRC_MEDIASENDER_H_
|
|
|
|
|
#include "Thread/ThreadPool.hpp"
|
|
|
|
|
using namespace ZL::Thread;
|
|
|
|
|
|
|
|
|
|
class MediaSender {
|
|
|
|
|
public:
|
|
|
|
|
static ThreadPool & sendThread() {
|
2017-04-10 17:24:06 +08:00
|
|
|
static ThreadPool pool(1);
|
2017-04-01 16:35:56 +08:00
|
|
|
return pool;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
MediaSender();
|
|
|
|
|
virtual ~MediaSender();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* SRC_MEDIASENDER_H_ */
|