1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2025-09-10 18:59:41 +02:00

The packet-reply-timeout is obtained from SmackConfiguration

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2191 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-01-01 23:21:49 +00:00 committed by gdombiak
parent 36cb521334
commit f7de4be1f9
3 changed files with 8 additions and 38 deletions

View file

@ -69,16 +69,6 @@ import java.util.*;
*/
public class GroupChat {
/**
* Value that indicates the number of milliseconds to wait for a response from
* the server.
*
* The reply timeout value can be assigned by setting this field to the required
* timeout, or by modifying the smack.configuration file that holds the default value
* to use.
*/
public static int REPLY_TIMEOUT = 5000;
private XMPPConnection connection;
private String room;
private String nickname = null;
@ -161,7 +151,7 @@ public class GroupChat {
* nickname.
*/
public synchronized void join(String nickname) throws XMPPException {
join(nickname, REPLY_TIMEOUT);
join(nickname, SmackConfiguration.getPacketReplyTimeout());
}
/**