blob: 10ee1f572a6e073b9d763b54e5987d3c6b53630f (
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_ABORT("ITransaction::Detach() is not implemented");
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT
|