/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cloud/blockstore/libs/cells/impl/endpoint_bootstrap_impl.h
32 строки
1 KB
yegorskii
switch to use full-rdma client in cells (#5099)
29 янв 2026, 20:10
Не верифицирован
29 янв 2026, 20:10
cd3b267
Код
Авторство
О чём код?
#pragma once #include "endpoint_bootstrap.h" #include <cloud/blockstore/libs/cells/iface/config.h> #include <cloud/blockstore/libs/client/config.h> #include <cloud/blockstore/libs/client/multiclient_endpoint.h> #include <cloud/blockstore/libs/client_rdma/rdma_client.h> namespace NCloud::NBlockStore::NCells { using namespace NThreading; //////////////////////////////////////////////////////////////////////////////// struct TCellCellHostEndpointBootstrap: public ICellHostEndpointBootstrap { using ICellHostEndpointBootstrap::TGrpcEndpointBootstrapFuture; using ICellHostEndpointBootstrap::TRdmaEndpointBootstrapFuture; auto SetupHostGrpcEndpoint( const TBootstrap& bootstrap, const TCellHostConfig& config) -> TGrpcEndpointBootstrapFuture override; auto SetupHostRdmaEndpoint( const TBootstrap& bootstrap, const TCellHostConfig& config) -> TRdmaEndpointBootstrapFuture override; }; //////////////////////////////////////////////////////////////////////////////// } // namespace NCloud::NBlockStore::NCells