Source code for spinnman.messages.eieio.data_messages.eieio_without_payload_data_message

from spinnman.messages.eieio.data_messages.eieio_data_message\
    import EIEIODataMessage
from spinnman.exceptions import SpinnmanInvalidParameterException
from spinnman.messages.eieio.data_messages.eieio_key_data_element\
    import EIEIOKeyDataElement


[docs]class EIEIOWithoutPayloadDataMessage(EIEIODataMessage): """ An EIEIO message without a payload """ def __init__(self, eieio_header, data_reader=None): EIEIODataMessage.__init__(self, eieio_header, data_reader=data_reader) if eieio_header.eieio_type.payload_bytes != 0: raise SpinnmanInvalidParameterException( "eieio_header", eieio_header, "This message should have no payload, but the header indicates" " that it does")
[docs] def add_key(self, key): """ Add a key to the packet :param key: The key to add :type key: int :raise SpinnmanInvalidParameterException: If the key is too\ big for the format """ if key > self._eieio_header.eieio_type.max_value: raise SpinnmanInvalidParameterException( "key", key, "Larger than the maximum allowed of {}".format( self._eieio_header.eieio_type.max_value)) EIEIODataMessage.add_element(self, EIEIOKeyDataElement(key))