BMM
BMM

Reputation: 161

Chat App Android using ejabberd 16 and XMPP

Can anybody tell me in detail what is the exact use of following methods?

   XMPPTCPConnection.setUseStreamManagementDefault(false);
   XMPPTCPConnection.setUseStreamManagementResumptiodDefault(false);
   XMPPTCPConnection.setUseStreamManagementResumption(false);

I want user to be gone offline when internet connection is lost.

I have implemented mod_ping on server as below

 [{send_pings, true}, {ping_interval, 2},
 {ping_ack_timeout, 2},
 {timeout_action, kill}]

Upvotes: 1

Views: 301

Answers (1)

Sunil Singh
Sunil Singh

Reputation: 538

 XMPPTCPConnection.setUseStreamManagementDefault(false);
// Set if Stream Management should be used by default for new connections.

  XMPPTCPConnection.setUseStreamManagementResumptiodDefault(false);

// Set if Stream Management resumption should be used by default for new connections.

   XMPPTCPConnection.setUseStreamManagementResumption(false);

// Set if Stream Management resumption should be used if supported by the server.

for more detail take a look here

Upvotes: 1

Related Questions