| 30 | class CompletionQueuePool { |
| 31 | public: |
| 32 | static CompletionQueuePool *GetInstance() { |
| 33 | static CompletionQueuePool |
| 34 | completion_queue_pool(std::thread::hardware_concurrency() * 2); |
| 35 | return &completion_queue_pool; |
| 36 | } |
| 37 | |
| 38 | CompletionQueuePool(CompletionQueuePool const&) = delete; |
| 39 | void operator=(CompletionQueuePool const&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected