(self, uow)
| 585 | ) |
| 586 | |
| 587 | def execute(self, uow): |
| 588 | states = self._elements(uow) |
| 589 | if self.isdelete: |
| 590 | self.dependency_processor.process_deletes(uow, states) |
| 591 | else: |
| 592 | self.dependency_processor.process_saves(uow, states) |
| 593 | |
| 594 | def per_state_flush_actions(self, uow): |
| 595 | # this is handled by SaveUpdateAll and DeleteAll, |
nothing calls this directly
no test coverage detected