Tigase显示最后看到的信息,表明此人最后一次被服务器看到。如果未设置,则将其设置为
protected static final long INITIAL_LAST_SEEN_VAL = 1000l;
任何人都可以让我知道tigase服务器如何跟踪最后看到的信息。
感谢
答案 0 :(得分:1)
每次收到来自此联系人的在线通知时,Tigase会将名册元素中的lastSeen字段设置为当前时间。 文件中的第1328行:tigase.xmpp.impl.Presence:
if ((rel != null) && (rel instanceof RosterElement)) {
((RosterElement) rel).setLastSeen(System.currentTimeMillis());
}