OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxStanzas
(Results
1 - 2
of
2
) sorted by null
/external/smack/src/org/jivesoftware/smackx/muc/
DiscussionHistory.java
37
* <li>
maxstanzas
-> total number of messages to receive in the history.
51
private int
maxStanzas
= -1;
70
return
maxStanzas
;
107
* @param
maxStanzas
the total number of messages to receive in the history.
109
public void setMaxStanzas(int
maxStanzas
) {
110
this.
maxStanzas
=
maxStanzas
;
142
return maxChars > -1 ||
maxStanzas
> -1 || seconds > -1 || since != null;
162
if (
maxStanzas
> -1) {
163
mucHistory.setMaxStanzas(
maxStanzas
);
[
all
...]
/external/smack/src/org/jivesoftware/smackx/packet/
MUCInitialPresence.java
117
private int
maxStanzas
= -1;
136
return
maxStanzas
;
173
* @param
maxStanzas
the total number of messages to receive in the history.
175
public void setMaxStanzas(int
maxStanzas
) {
176
this.
maxStanzas
=
maxStanzas
;
209
buf.append("
maxstanzas
=\"").append(getMaxStanzas()).append("\"");
Completed in 157 milliseconds