Optional
const config: Realm.Configuration = {
sync: {
user,
flexible: true,
initialSubscriptions: {
update: (subs, realm) => {
subs.add(realm.objects('Task'));
},
rerunOnOpen: true,
},
},
// ... rest of config ...
};
const realm = await Realm.open(config);
// At this point, the Realm will be open with the data for the initial set
// subscriptions fully synchronised.
Optional
使用TypeDoc生成
可选对象,用于配置打开 Realm 时使用的一组初始 Flexible Sync 订阅的设置。 如果指定了此项, Realm.open将在这组订阅与服务器完全同步之前进行解析。