Exceptions
IndexNoMoreThereError
Bases: IndexError
Accessing a valid stream index, but it has been trimmed off for memory saving.
Source code in blissdata/redis_engine/exceptions.py
13 14 15 16 |
|
IndexNotYetThereError
Bases: IndexError
Accessing index outside stream, but it can still arrive later.
Source code in blissdata/redis_engine/exceptions.py
19 20 21 22 |
|
IndexWontBeThereError
Bases: IndexError
Accessing index outside stream, but stream is already sealed.
Source code in blissdata/redis_engine/exceptions.py
25 26 27 28 |
|
ScanValidationError
Bases: ScanLoadError
Scan exists but is not valid, most likely the scan model version on the publisher side is different.
Source code in blissdata/redis_engine/exceptions.py
47 48 49 50 |
|