Returns the exclusive progress of the dataflow.
(&self)
| 730 | |
| 731 | /// Returns the exclusive progress of the dataflow. |
| 732 | pub fn progress(&self) -> u64 { |
| 733 | self.txns |
| 734 | .with_frontier(|f| *f.as_option().unwrap_or(&u64::MAX)) |
| 735 | } |
| 736 | |
| 737 | /// Steps the dataflow, capturing output. |
| 738 | pub fn step(&mut self) { |
no test coverage detected