bluesky.run_engine.RunEngineResult

class bluesky.run_engine.RunEngineResult(run_start_uids: Tuple[str, ...], plan_result: Any, exit_status: str, interrupted: bool, reason: str, exception: Exception | None)[source]

Information about the plan that was run

Attributes:
run_start_uidslist

A list of the UIDs generated during the plan (if any)

plan_result

The return value of the top-level plan that was run

exit_statusstr
interruptedbool

True if the plan was halted, stopped or aborted

reasonstr

A text description of the reason why the plan was aborted (if aborted)

exception

The exception generated by the plan, if any

__init__(run_start_uids: Tuple[str, ...], plan_result: Any, exit_status: str, interrupted: bool, reason: str, exception: Exception | None) None

Methods

__init__(run_start_uids, plan_result, ...)

Attributes

run_start_uids

plan_result

exit_status

interrupted

reason

exception