abc module

The set of abstract definitions for the storers module.

class jinete.storers.abc.Storer(result, formatter_cls=None)[source]

Bases: abc.ABC

Store a resulting solution.

__init__(result, formatter_cls=None)[source]

Construct a new object instance.

Parameters
  • result (Result) – The result object to store.

  • formatter_cls (Type[StorerFormatter]) – The formatter class to be used during the storage process.

abstract store()[source]

Perform a storage process.

Return type

None