Source code for spinnman.messages.eieio.command_messages.event_stop_request

from spinnman.constants import EIEIO_COMMAND_IDS
from .eieio_command_message import EIEIOCommandMessage
from .eieio_command_header import EIEIOCommandHeader


[docs]class EventStopRequest(EIEIOCommandMessage): """ Packet used for the buffering input technique which causes the parser\ of the input packet to terminate its execution """ def __init__(self): EIEIOCommandMessage.__init__( self, EIEIOCommandHeader(EIEIO_COMMAND_IDS.EVENT_STOP.value))