blob: 6d245781c9ab9f1d5f7f551da9c8b22378a33858 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "client.h"
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
void ILock::Wait(TDuration timeout)
{
return GetAcquiredFuture().GetValue(timeout);
}
void ITransaction::Detach()
{
Y_ABORT("ITransaction::Detach() is not implemented");
}
////////////////////////////////////////////////////////////////////////////////
const TNode::TMapType& IClient::GetDynamicConfiguration(const TString& /*configProfile*/)
{
Y_ABORT("IClient::GetDynamicConfiguration is not implemented");
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|