1 Star 1 Fork 0

lyz/C++11的MyMuduo网络库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EventLoopThread.h 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
lyz 提交于 2023-02-21 23:25 . 第一次提交全部文件
#pragma once
#include "noncopyable.h"
#include "Thread.h"
#include <functional>
#include <mutex>
#include <condition_variable>
#include <string>
class EventLoop;
class EventLoopThread : noncopyable
{
public:
using ThreadInitCallback = std::function<void(EventLoop*)>;
EventLoopThread(const ThreadInitCallback &cb = ThreadInitCallback(),
const std::string &name = std::string());
~EventLoopThread();
EventLoop* startLoop();
private:
void threadFunc();
EventLoop *loop_;
bool exiting_;
Thread thread_;
std::mutex mutex_;
std::condition_variable cond_;
ThreadInitCallback callback_;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/li-gouhi2333/c11-my-muduo.git
git@gitee.com:li-gouhi2333/c11-my-muduo.git
li-gouhi2333
c11-my-muduo
C++11的MyMuduo网络库
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385