blob: 11d308b8098b7fbf9ba5853a56e7a099d49f56e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "client.h"
namespace NYT {
////////////////////////////////////////////////////////////////////////////////
void ILock::Wait(TDuration timeout)
{
return GetAcquiredFuture().GetValue(timeout);
}
void ITransaction::Detach()
{
Y_FAIL("ITransaction::Detach() is not implemented");
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|