minos.saga.executions.executors.local module

class minos.saga.executions.executors.local.LocalExecutor(execution_uuid, *args, **kwargs)[source]

Bases: minos.saga.executions.executors.abc.Executor

Local Executor class.

__init__(execution_uuid, *args, **kwargs)
async exec(operation, context, *args, **kwargs)[source]

Execute the commit operation.

Parameters
Return type

minos.saga.context.SagaContext

Returns

An updated context instance.

async exec_function(func, *args, **kwargs)

Execute a function.

Parameters
  • func (typing.Callable) – Function to be executed.

  • args – Additional positional arguments to the function.

  • kwargs – Additional named arguments to the function.

Return type

typing.Any

Returns

The func result.