Source code for RsCmwDau.Implementations.Configure_.Data_.Measurement_.IpReplay_.StopAll

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StopAll: """StopAll commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("stopAll", core, parent)
[docs] def set(self) -> None: """SCPI: CONFigure:DATA:MEASurement<Instance>:IPReplay:STOPall \n Snippet: driver.configure.data.measurement.ipReplay.stopAll.set() \n Stops replaying the playlist. \n """ self._core.io.write(f'CONFigure:DATA:MEASurement<MeasInstance>:IPReplay:STOPall')
[docs] def set_with_opc(self) -> None: """SCPI: CONFigure:DATA:MEASurement<Instance>:IPReplay:STOPall \n Snippet: driver.configure.data.measurement.ipReplay.stopAll.set_with_opc() \n Stops replaying the playlist. \n Same as set, but waits for the operation to complete before continuing further. Use the RsCmwDau.utilities.opc_timeout_set() to set the timeout value. \n """ self._core.io.write_with_opc(f'CONFigure:DATA:MEASurement<MeasInstance>:IPReplay:STOPall')