mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-07-05 19:08:09 +08:00
初始提交
This commit is contained in:
24
src/MediaSender.h
Normal file
24
src/MediaSender.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* 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() {
|
||||
static ThreadPool pool(1, ThreadPool::PRIORITY_HIGHEST);
|
||||
return pool;
|
||||
}
|
||||
private:
|
||||
MediaSender();
|
||||
virtual ~MediaSender();
|
||||
};
|
||||
|
||||
#endif /* SRC_MEDIASENDER_H_ */
|
||||
Reference in New Issue
Block a user