minos.saga.executions.executors.response module

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

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

Response Executor class.

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

Execute the 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.