You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it is harder to add or edit an EDL command it is both defined in protocols/edl_command.py and in the services/edl.
It would be great to have an object that has the definition of how the request packet, response packet, and a run() method all in one location for each command.
Proposed new Order of operations:
EDL Service get a new request packet from the Radio Service
EDL Service unpack and validates request packet with protocols and protocols returns a command obj(?)
EDL Service run the command object
EDL Service sends the command object back to protocols to pack the response packet
EDL Service sends response packet to Radio Service
The key to this is having one place that defines all uses of the command.
The text was updated successfully, but these errors were encountered:
Currently it is harder to add or edit an EDL command it is both defined in
protocols/edl_command.py
and in theservices/edl
.It would be great to have an object that has the definition of how the request packet, response packet, and a
run()
method all in one location for each command.Proposed new Order of operations:
The key to this is having one place that defines all uses of the command.
The text was updated successfully, but these errors were encountered: