(self)
| 63 | } |
| 64 | |
| 65 | pub async fn rollback(self) -> ApplicationResult<()> { |
| 66 | let mut executor = self.executor.write().await; |
| 67 | executor.rollback().await |
| 68 | } |
| 69 | |
| 70 | /// commit_hook is invoked right before the calling for commit |
| 71 | /// which sorts out and processes outboxes and internally processable events. |
no outgoing calls