Start the experiment and set it to be active. This method will also start a new recorder. Parameters ---------- recorder_id : str the id of the recorder to be created. recorder_name : str the name of the recorder to be created
(self, *, recorder_id=None, recorder_name=None, resume=False)
| 42 | return output |
| 43 | |
| 44 | def start(self, *, recorder_id=None, recorder_name=None, resume=False): |
| 45 | """ |
| 46 | Start the experiment and set it to be active. This method will also start a new recorder. |
| 47 | |
| 48 | Parameters |
| 49 | ---------- |
| 50 | recorder_id : str |
| 51 | the id of the recorder to be created. |
| 52 | recorder_name : str |
| 53 | the name of the recorder to be created. |
| 54 | resume : bool |
| 55 | whether to resume the first recorder |
| 56 | |
| 57 | Returns |
| 58 | ------- |
| 59 | An active recorder. |
| 60 | """ |
| 61 | raise NotImplementedError(f"Please implement the `start` method.") |
| 62 | |
| 63 | def end(self, recorder_status=Recorder.STATUS_S): |
| 64 | """ |
no outgoing calls