client.cpp 403 B

12345678910111213141516171819
  1. #include "client.h"
  2. namespace NYT {
  3. ////////////////////////////////////////////////////////////////////////////////
  4. void ILock::Wait(TDuration timeout)
  5. {
  6. return GetAcquiredFuture().GetValue(timeout);
  7. }
  8. void ITransaction::Detach()
  9. {
  10. Y_ABORT("ITransaction::Detach() is not implemented");
  11. }
  12. ////////////////////////////////////////////////////////////////////////////////
  13. } // namespace NYT