(self, connection: Connection, xid: Any)
| 2865 | xid: Any |
| 2866 | |
| 2867 | def __init__(self, connection: Connection, xid: Any): |
| 2868 | self._is_prepared = False |
| 2869 | self.xid = xid |
| 2870 | super().__init__(connection) |
| 2871 | |
| 2872 | def prepare(self) -> None: |
| 2873 | """Prepare this :class:`.TwoPhaseTransaction`. |