Storage
dotflow.abc.storage.Storage
Bases: ABC
Storage
Source code in dotflow/abc/storage.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
__init__(*args, **kwargs)
Source code in dotflow/abc/storage.py
12 13 |
|
get(key)
abstractmethod
Get context somewhere
Source code in dotflow/abc/storage.py
19 20 21 |
|
key(task)
abstractmethod
Function that returns a key to get and post storage
Source code in dotflow/abc/storage.py
23 24 25 |
|
post(key, context)
abstractmethod
Post context somewhere
Source code in dotflow/abc/storage.py
15 16 17 |
|