Package org.jivesoftware.smack.tcp
Class XMPPTCPConnectionConfiguration
java.lang.Object
org.jivesoftware.smack.ConnectionConfiguration
org.jivesoftware.smack.tcp.XMPPTCPConnectionConfiguration
public final class XMPPTCPConnectionConfiguration
extends org.jivesoftware.smack.ConnectionConfiguration
A connection configuration for XMPP connections over TCP (the common case).
You can get an instance of the configuration builder with builder() and build the final immutable connection
configuration with XMPPTCPConnectionConfiguration.Builder.build().
XMPPTCPConnectionConfiguration conf = XMPPTCPConnectionConfiguration.builder()
.setXmppDomain("example.org").setUsernameAndPassword("user", "password")
.setCompressionEnabled(false).build();
XMPPTCPConnection connection = new XMPPTCPConnection(conf);
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA configuration builder for XMPP connections over TCP.Nested classes/interfaces inherited from class org.jivesoftware.smack.ConnectionConfiguration
org.jivesoftware.smack.ConnectionConfiguration.DnssecMode, org.jivesoftware.smack.ConnectionConfiguration.SecurityMode -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intThe default connect timeout in milliseconds.Fields inherited from class org.jivesoftware.smack.ConnectionConfiguration
allowNullOrEmptyUsername, host, hostAddress, port, proxy, xmppServiceDomain, xmppServiceDomainDnsName -
Method Summary
Modifier and TypeMethodDescriptionbuilder()intHow long the socket will wait until a TCP connection is established (in milliseconds).Methods inherited from class org.jivesoftware.smack.ConnectionConfiguration
getAuthzid, getCallbackHandler, getDebuggerFactory, getDnssecMode, getEnabledSaslMechanisms, getEnabledSSLCiphers, getEnabledSSLProtocols, getHost, getHostAddress, getHostnameVerifier, getHostString, getLanguage, getPassword, getPort, getProxyInfo, getResource, getSecurityMode, getServiceName, getSocketFactory, getUsername, getXmlLang, getXMPPServiceDomain, getXmppServiceDomainAsDnsNameIfPossible, isCompressionEnabled, isEnabledSaslMechanism, isSendPresence
-
Field Details
-
DEFAULT_CONNECT_TIMEOUT
public static int DEFAULT_CONNECT_TIMEOUTThe default connect timeout in milliseconds. Preinitialized with 30000 (30 seconds). If this value is changed, new Builder instances will use the new value as default.
-
-
Method Details
-
getConnectTimeout
public int getConnectTimeout()How long the socket will wait until a TCP connection is established (in milliseconds). Defaults toDEFAULT_CONNECT_TIMEOUT.- Returns:
- the timeout value in milliseconds.
-
builder
-