(&mut self)
| 57 | self._commit().await |
| 58 | } |
| 59 | async fn _commit(&mut self) -> ApplicationResult<()> { |
| 60 | let mut executor = self.executor.write().await; |
| 61 | |
| 62 | executor.commit().await |
| 63 | } |
| 64 | |
| 65 | pub async fn rollback(self) -> ApplicationResult<()> { |
| 66 | let mut executor = self.executor.write().await; |