Sto lavorando con alcuni esempi di codice per l'API Diffusion JS ma non capisco l'esempio sulla riconnessione. Quali sono i parametri e abort
di reconnectionStrategy?Argomenti non spiegati passati alla riconnessione del client JSStrategia
// Create a reconnection strategy that applies an exponential back-off
var reconnectionStrategy = (function() {
return function(start, abort) {
var wait = Math.min(Math.pow(2, attempts++) * 100, maximumAttemptInterval);
// Wait and then try to start the reconnection attempt
setTimeout(start, wait);
};
})();
// Connect to the server.
diffusion.connect({
host : 'diffusion.example.com',
port : 443,
secure : true,
principal : 'control',
credentials : 'password',
reconnect : {
timeout : maximumTimeoutDuration,
strategy : reconnectionStrategy
}
}).then(function(session) {
Tratto da https://github.com/pushtechnology/diffusion-examples/blob/master/js/examples/reconnect.js
In ogni modo è possibile rendere riconnessioneStrategy uguale alla funzione restituita. Potrebbe aver precedentemente incluso le sue variabili locali che spiegherebbero perché è così com'è. –