mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 18:02:24 +00:00
14 lines
194 B
C++
14 lines
194 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Common/ThreadPool.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
using CallbackRunner = std::function<void(std::function<void()>)>;
|
||
|
|
||
|
CallbackRunner threadPoolCallbackRunner(ThreadPool & pool);
|
||
|
|
||
|
}
|