(mut self)
| 50 | } |
| 51 | |
| 52 | pub async fn commit(mut self) -> ApplicationResult<()> { |
| 53 | // To drop uow itself! |
| 54 | |
| 55 | self._commit_hook().await?; |
| 56 | |
| 57 | self._commit().await |
| 58 | } |
| 59 | async fn _commit(&mut self) -> ApplicationResult<()> { |
| 60 | let mut executor = self.executor.write().await; |
| 61 |