Begin a TPC transaction with the given transaction ID `!xid`.
(self, xid: Xid | str)
| 526 | self.wait(self._set_deferrable_gen(value)) |
| 527 | |
| 528 | def tpc_begin(self, xid: Xid | str) -> None: |
| 529 | """ |
| 530 | Begin a TPC transaction with the given transaction ID `!xid`. |
| 531 | """ |
| 532 | with self.lock: |
| 533 | self.wait(self._tpc_begin_gen(xid)) |
| 534 | |
| 535 | def tpc_prepare(self) -> None: |
| 536 | """ |