store method of the PageStorage interface
Adds, removes or edits data, associated with the key of the page with the specified identifier.
Please note that this method might throw an Exception that should be handled.
@WorkerThread
void store(
String pageId,
String key,
byte[] data
) throws Exception;
Parameters
- pageId
- Identifier of the page with certain data. Must not be null.
- key
- The key, associated with the data to be edited. Must not be null.
- data
- Exact data to be added to the page by the key. Pass null to remove the stored value.
02.03.2022 12:59:15