FallbackStorage
Try to store all messages in the first backend. Store any unstored messages in each subsequent backend.
Attributes
| Attribute | Type | Description |
|---|---|---|
| storage_classes | tuple = (CookieStorage, SessionStorage) | A tuple of message storage backend classes to be instantiated and used sequentially for message persistence. |
Constructor
Signature
def FallbackStorage(
*args: any,
**kwargs: any
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| *args | any | Variable length argument list passed to the base class and individual storage backends. |
| **kwargs | any | Arbitrary keyword arguments passed to the base class and individual storage backends. |