blob: 10ee1f572a6e073b9d763b54e5987d3c6b53630f (
plain) (
tree)
|
|
#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
|