table 上的领域对象服务器客户端上的同步侦听器 (android)

Realm Object Server on table sync listener on client (android)

您好,我有一个 android realm (4.1.0) 与 ROS 2.0 相连。

配置包含几个 table。是否可以在 android 一侧设置 on table change listener?我的意思是在服务器 table 上插入或更新项目(一些特定的 table,只有一个)并复制到移动设备时捕捉动作?

我发现可以为从 table 中选择的数据更改侦听器,但没有我正在寻找的方式,我不需要live selection,我需要在后台同步数据时执行操作。 有什么办法吗?

谢谢。

我们有进度侦听器,可以在数据上传到服务器时告诉您。请参阅 https://docs.realm.io/sync/using-synced-realms/syncing-data#progress-notifications,但如果您需要知道 何时对数据采取行动,那么唯一的方法就是使用布尔字段,例如 serverDone然后服务器可以设置该字段,然后同步到客户端。