| 4 | #include "EventLoopThreadPool.h" |
| 5 | |
| 6 | EventLoopThreadPool::EventLoopThreadPool(EventLoop *baseLoop, const std::string &nameArg) |
| 7 | : baseLoop_(baseLoop) |
| 8 | , name_(nameArg) |
| 9 | , started_(false) |
| 10 | , numThreads_(0) |
| 11 | , next_(0) |
| 12 | { |
| 13 | } |
| 14 | |
| 15 | EventLoopThreadPool::~EventLoopThreadPool() |
| 16 | { |
nothing calls this directly
no outgoing calls
no test coverage detected