最近在Tigase中看到的信息

时间:2013-10-29 12:41:36

标签: xmpp user-presence tigase

Tigase显示最后看到的信息,表明此人最后一次被服务器看到。如果未设置,则将其设置为

    protected static final long INITIAL_LAST_SEEN_VAL = 1000l;

任何人都可以让我知道tigase服务器如何跟踪最后看到的信息。
感谢

1 个答案:

答案 0 :(得分:1)

每次收到来自此联系人的在线通知时,Tigase会将名册元素中的lastSeen字段设置为当前时间。 文件中的第1328行:tigase.xmpp.impl.Presence:

if ((rel != null) && (rel instanceof RosterElement)) {
  ((RosterElement) rel).setLastSeen(System.currentTimeMillis());
}