Trace#

class composer.core.Trace(name='', event=None, exit_code=None, order=None, run=False)[source]#

Record of an algorithmโ€™s execution.

name#

The name of the algorithm.

Type

str

event#

The current event.

Type

Event

exit_code#

Optional return value from an algorithm. Default: None.

Type

int | None

order#

Order in which the algorithm was executed in the list of algorithms. None means algorithm was not run.

Type

int | None

run#

Whether the algorithm was run. Default: False

Type

bool