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

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 39 private int maxChats = 0;
138 return maxChats;
141 void setMaxChats(int maxChats) {
142 this.maxChats = maxChats;
AgentSession.java 63 private int maxChats;
98 this.maxChats = -1;
181 return maxChats;
208 setStatus(presenceMode, maxChats);
225 setStatus(presenceMode, maxChats);
309 * maxChats value the agent sends may be adjusted by the server to a value within that
313 * @param maxChats the maximum number of chats the agent is willing to accept.
317 public void setStatus(Presence.Mode presenceMode, int maxChats) throws XMPPException {
318 setStatus(presenceMode, maxChats, null);
334 * range; for example, between two and five. In that case, the maxChats value the agent sends
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 54 private int maxChats = -1;
75 return maxChats;
94 if (maxChats != -1) {
95 buf.append("<max-chats>").append(maxChats).append("</max-chats>");
237 agentStatus.maxChats = Integer.parseInt(parser.nextText());

Completed in 472 milliseconds