Skip to content
Snippets Groups Projects
Commit 51cf849d authored by martinRenou's avatar martinRenou
Browse files

Fix doc

parent da372dda
No related branches found
No related tags found
1 merge request!86Improve event handling
......@@ -2,22 +2,22 @@ from traits.api import HasStrictTraits, Tuple
class BaseDriverEvent(HasStrictTraits):
"""Base event for the Driver"""
""" Base event for the MCO driver."""
class MCOStartEvent(BaseDriverEvent):
"""MCO should emit this event when the evaluation starts."""
""" The MCO driver should emit this event when the evaluation starts."""
input_names = Tuple()
output_names = Tuple()
class MCOFinishEvent(BaseDriverEvent):
"""MCO should emit this event when the evaluation ends."""
""" The MCO driver should emit this event when the evaluation ends."""
class MCOProgressEvent(BaseDriverEvent):
"""MCO should emit this event for every new evaluation that has been
completed. It carries data about the evaluation, specifically the
""" The MCO driver should emit this event for every new evaluation that has
been completed. It carries data about the evaluation, specifically the
input data (MCO parameter values) and the resulting output (KPIs)."""
input = Tuple()
output = Tuple()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment