minos.saga.executions.steps.remote module¶
- class minos.saga.executions.steps.remote.RemoteSagaStepExecution(definition, related_services=None, status=SagaStepStatus.Created, already_rollback=False)[source]¶
Bases:
minos.saga.executions.steps.abc.SagaStepExecution
Saga Execution Step class.
- __init__(definition, related_services=None, status=SagaStepStatus.Created, already_rollback=False)¶
- async execute(context, response=None, *args, **kwargs)[source]¶
Execution the remote step.
- Parameters
context (
minos.saga.context.SagaContext
) – The execution context to be used during the execution.response (
typing.Optional
[minos.saga.messages.SagaResponse
]) – An optional command response instance (to be consumed by the on_success method).args – Additional positional arguments.
kwargs – Additional named arguments.
- Return type
- Returns
The updated context.
- static from_definition(step)¶
Build a
SagaStepExecution
instance from theSagaStep
definition.- Parameters
step (
minos.saga.definitions.steps.abc.SagaStep
) – TheSagaStep
definition.- Return type
- Returns
A new
SagaStepExecution
.
- classmethod from_raw(raw, **kwargs)¶
Build a new instance from a raw representation.
- Parameters
raw (
typing.Union
[dict
[str
,typing.Any
],minos.saga.executions.steps.abc.SagaStepExecution
]) – The raw representation of the instance.kwargs – Additional named arguments.
- Return type
- Returns
A
SagaStepExecution
instance.
- property raw: dict[str, typing.Any]¶
Compute a raw representation of the instance.
- Return type
dict
[str
,typing.Any
]- Returns
A
dict
instance.
- async rollback(context, *args, **kwargs)[source]¶
Revert the executed remote step.
- Parameters
context (
minos.saga.context.SagaContext
) – Execution context.args – Additional positional arguments.
kwargs – Additional named arguments.
- Return type
- Returns
The updated execution context.