(self, should_stop_blob)
| 2751 | self._step.only_once = only_once |
| 2752 | |
| 2753 | def SetShouldStopBlob(self, should_stop_blob): |
| 2754 | assert isinstance(should_stop_blob, BlobReference), ( |
| 2755 | "expects BlobReference here, got {}".format(type(should_stop_blob))) |
| 2756 | self._assert_can_mutate() |
| 2757 | self._step.should_stop_blob = str(should_stop_blob) |
| 2758 | |
| 2759 | def RunEveryMillis(self, interval): |
| 2760 | """ |
no test coverage detected