Skip to content

store

MLTE custom list store implementation.

CustomListStore

Bases: Store

An abstract custom list store

Source code in mlte/store/custom_list/store.py
13
14
15
16
17
18
19
20
21
class CustomListStore(Store):
    """An abstract custom list store"""

    def session(self) -> CustomListStoreSession:
        """
        Return a session handle for the store instance.
        :return: The session handle
        """
        raise NotImplementedError("Cannot get handle to abstract Store.")

session()

Return a session handle for the store instance.

Returns:

Type Description
CustomListStoreSession

The session handle

Source code in mlte/store/custom_list/store.py
16
17
18
19
20
21
def session(self) -> CustomListStoreSession:
    """
    Return a session handle for the store instance.
    :return: The session handle
    """
    raise NotImplementedError("Cannot get handle to abstract Store.")