Source code for spinnman.messages.multicast_message

[docs]class MulticastMessage(object): """ A SpiNNaker Multicast message """ def __init__(self, key, payload=None): """A multicast message has a key (determining the target locations) and an optional payload. :param key: The key of the packet :type key: int :param payload: The optional payload of the packet :type payload: int :raise None: No known exceptions are raised """ self._key = key self._payload = payload @property def key(self): """ The key of the packet :return: The key :rtype: int """ return self._key @property def payload(self): """ The payload of the packet if there is one :return: The payload, or None if there is no payload :rtype: int """ return self._payload