You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default the client will request a response every 5 stanzas sent. You can change that behavior
setting the value of requestResponseInterval. To disable this feature set to zero.
By adding a listener, you will receive the ID of each sent stanza that has been acknowledged by the server.
There is currently no way remove a listener.
You may enable logging to have the console notify you when the server has acknowledged some but not all stanzas.
Such instances can occur due to transmission delay and is therefore not necessarily a critical error.
Logging is disabled by default.
connection.streamManagement.logging = true;
Notes
Please note that between requesting the enablement of stream management and the server confirming support.
The sending stream is paused. This means that if the server does not support XEP-198, your application
will stop sending stanzas until to you manually resume the stream 'connection.resume()'.
You may also run into issues if you use 'connection.pause()' or 'connection.resume' elsewhere in your codebase.