Source code for RsCmwWcdmaSig.Implementations.Clean_.Connection_.Cswitched_.Reject

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Reject: """Reject commands group definition. 1 total commands, 0 Sub-groups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("reject", core, parent)
[docs] def set(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:CONNection:CSWitched:REJect \n Snippet: driver.clean.connection.cswitched.reject.set() \n Sets the counters of connection attempt / reject to zero. \n """ self._core.io.write(f'CLEan:WCDMa:SIGNaling<Instance>:CONNection:CSWitched:REJect')
[docs] def set_with_opc(self) -> None: """SCPI: CLEan:WCDMa:SIGNaling<instance>:CONNection:CSWitched:REJect \n Snippet: driver.clean.connection.cswitched.reject.set_with_opc() \n Sets the counters of connection attempt / reject to zero. \n Same as set, but waits for the operation to complete before continuing further. Use the RsCmwWcdmaSig.utilities.opc_timeout_set() to set the timeout value. \n """ self._core.io.write_with_opc(f'CLEan:WCDMa:SIGNaling<Instance>:CONNection:CSWitched:REJect')