minos.saga.executions.executors.abc module

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

Bases: object

Executor class.

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

Execute the given operation.

Parameters
Return type

typing.Any

Returns

The execution response.

async exec_function(func, *args, **kwargs)[source]

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.