HomeSort by relevance Sort by last modified time
    Searched refs:currentChats (Results 1 - 3 of 3) sorted by null

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 40 private int currentChats = 0;
151 return currentChats;
154 void setCurrentChats(int currentChats) {
155 this.currentChats = currentChats;
AgentSession.java 740 int currentChats = Integer.parseInt(notifyAgents.getValue("current-chats"));
742 queue.setCurrentChats(currentChats);
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 53 private List<ChatInfo> currentChats = new ArrayList<ChatInfo>();
71 return Collections.unmodifiableList(currentChats);
97 if (!currentChats.isEmpty()) {
99 for (Iterator<ChatInfo> it = currentChats.iterator(); it.hasNext();) {
234 agentStatus.currentChats.add(parseChatInfo(parser));

Completed in 32 milliseconds