saveOnBatch abstract method
Describe the data storage process when performing a batch.
The ModelBatchRef created by runBatch is passed to ref
, and query
is the query of the target document.
The data to be stored is passed to value
.
Keys with value
value of null
should be deleted from the database.
バッチを行う際のデータ保存処理を記述します。
ref
にrunBatchで作成したModelBatchRefが渡され、query
は対象のドキュメントのクエリが渡されます。
value
に保存するデータが渡されます。
value
の値にNullが入っているキーはデータベース上から削除するようにしてください。
Implementation
void saveOnBatch(
ModelBatchRef ref,
ModelAdapterDocumentQuery query,
DynamicMap value,
);