Run this step every interval millisecods, as long as its siblings are still running. It is guaranteed that, after all siblings finish, this step will run at least one. This property is ignored for top-level ExecutionSteps.
(self, interval)
| 2757 | self._step.should_stop_blob = str(should_stop_blob) |
| 2758 | |
| 2759 | def RunEveryMillis(self, interval): |
| 2760 | """ |
| 2761 | Run this step every interval millisecods, as long as its |
| 2762 | siblings are still running. It is guaranteed that, after all |
| 2763 | siblings finish, this step will run at least one. |
| 2764 | |
| 2765 | This property is ignored for top-level ExecutionSteps. |
| 2766 | """ |
| 2767 | self._step.run_every_ms = interval |
| 2768 | |
| 2769 | def SetReportNet(self, report_net, report_interval): |
| 2770 | """ DEPRECATED. Use RunEveryMillis instead. """ |
no outgoing calls
no test coverage detected