Source code for cis_interface.drivers.OutputCommDriver

from cis_interface.drivers.CommDriver import CommDriver


[docs]class OutputCommDriver(CommDriver): r"""Driver for output communication. Args: name (str): The name of the message queue that the driver should connect to. **kwargs: Additional keyword arguments are passed to the parent class. """ def __init__(self, name, **kwargs): kwargs['direction'] = 'recv' super(OutputCommDriver, self).__init__(name, **kwargs)