我有票务类和消息类,如下所示。 我只想为特殊票证ID中的内部消息列表设置更改侦听器,而不设置整个表消息。 我了解了有关结果和对象changeListener和Notifications的信息,但找不到任何解决方案;
我该怎么做?
public class TicketPojo extends RealmObject {
private Date createAt;
private Date updateAt;
@PrimaryKey
private int id;
private String supporterName;
private int supporterID;
RealmList<MessagePojo> messages;
//....
}
和
public class MessagePojo extends RealmObject {
@PrimaryKey
int id;
String messageType;
String Message;
Date createAt;
Date updateAt;
//...
}