| 373 | mCopyAsyncFunctors.swap(mAsyncFunctors); |
| 374 | } |
| 375 | void pushAsyncFunctor(UserFunctor&& f) |
| 376 | { |
| 377 | std::lock_guard<std::mutex> lck(mAsyncFunctorsMutex); |
| 378 | mAsyncFunctors.emplace_back(std::move(f)); |
| 379 | } |
| 380 | |
| 381 | #ifdef BRYNET_PLATFORM_LINUX |
| 382 | int getEpollHandle() const |
nothing calls this directly
no outgoing calls
no test coverage detected