mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
011480924a
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
14 lines
381 B
C++
14 lines
381 B
C++
#pragma once
|
|
|
|
template <typename Thread>
|
|
class ThreadPoolImpl;
|
|
|
|
template <bool propagate_opentelemetry_context>
|
|
class ThreadFromGlobalPoolImpl;
|
|
|
|
using ThreadFromGlobalPoolNoTracingContextPropagation = ThreadFromGlobalPoolImpl<false>;
|
|
|
|
using ThreadFromGlobalPool = ThreadFromGlobalPoolImpl<true>;
|
|
|
|
using ThreadPool = ThreadPoolImpl<ThreadFromGlobalPoolNoTracingContextPropagation>;
|