minos.common.launchers module

class minos.common.launchers.EntrypointLauncher(config, injections, services, log_level=20, log_format='color', log_date_format=DateFormat.color, external_modules=None, *args, **kwargs)[source]

Bases: minos.common.setup.MinosSetup

EntryPoint Launcher class.

__init__(config, injections, services, log_level=20, log_format='color', log_date_format=DateFormat.color, external_modules=None, *args, **kwargs)[source]
property already_destroyed: bool

Already Destroy getter.

Return type

bool

Returns

A boolean value.

property already_setup: bool

Already Setup getter.

Return type

bool

Returns

A boolean value.

async destroy()

Destroy miscellaneous repository things.

Return type

None

Returns

This method does not return anything.

entrypoint

Entrypoint instance.

Returns

An Entrypoint instance.

classmethod from_config(config=None, **kwargs)

Build a new instance from config.

Parameters
Return type

~S

Returns

A instance of the called class.

graceful_shutdown(err=None)[source]

Shutdown the services execution gracefully.

Return type

None

Returns

This method does not return anything.

injector

Dependency injector instance.

Returns

A DependencyInjector instance.

launch()[source]

Launch a new execution and keeps running forever..

Return type

typing.NoReturn

Returns

This method does not return anything.

loop

Create the loop.

Returns

An AbstractEventLoop instance.

services

List of services to be launched.

Returns

A list of Service instances.

async setup()

Setup miscellaneous repository things.

Return type

None

Returns

This method does not return anything.