Interface: StorageExternalStoreHandler
Defined in: src/storage/interfaces/StorageExternalStoreHandler.ts:3
Properties
onClearOldTempVariable?
> optional onClearOldTempVariable?: (key) => void
Defined in: src/storage/interfaces/StorageExternalStoreHandler.ts:13
Triggered when a temp variable is removed by StorageRegistry.clearOldTempVariables. The key is provided without any storage prefix.
Parameters
key
string
Returns
void
onRemoveVariable?
> optional onRemoveVariable?: (key) => void
Defined in: src/storage/interfaces/StorageExternalStoreHandler.ts:18
Triggered when StorageRegistry.removeVariable is called. The key is provided without any storage prefix.
Parameters
key
string
Returns
void
onSetVariable?
> optional onSetVariable?: (key, value) => void
Defined in: src/storage/interfaces/StorageExternalStoreHandler.ts:8
Triggered when StorageRegistry.setVariable is called. The key is provided without any storage prefix.
Parameters
key
string
value
Returns
void