mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
14 lines
223 B
C++
14 lines
223 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
#include <Core/Types.h>
|
|
|
|
namespace DB
|
|
{
|
|
class ProtocolServerAdapter;
|
|
|
|
size_t waitServersToFinish(std::vector<ProtocolServerAdapter> & servers, std::mutex & mutex, size_t seconds_to_wait);
|
|
|
|
}
|