getChangeset abstract method

FutureOr<CrdtChangeset> getChangeset({
  1. Iterable<String>? onlyTables,
  2. String? onlyNodeId,
  3. String? exceptNodeId,
  4. Hlc? modifiedOn,
  5. Hlc? modifiedAfter,
})

Get a Changeset using the provided changesetQueries.

Set the filtering parameters to to generate subsets: onlyTables only records from the specified tables. Leave empty for all. onlyNodeId only records set by the specified node. exceptNodeId only records not set by the specified node. modifiedOn records whose modified at this exact Hlc. modifiedAfter records modified after the specified Hlc.

Implementation

FutureOr<CrdtChangeset> getChangeset({
  Iterable<String>? onlyTables,
  String? onlyNodeId,
  String? exceptNodeId,
  Hlc? modifiedOn,
  Hlc? modifiedAfter,
});