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 이 확인되지 않습니다.