@stomp/stompjs 6.0.0 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bundles/stomp.umd.js +2 -2
- package/bundles/stomp.umd.js.map +1 -1
- package/bundles/stomp.umd.min.js +1 -1
- package/bundles/stomp.umd.min.js.map +1 -1
- package/esm6/client.d.ts +1 -1
- package/esm6/client.js +2 -2
- package/esm6/client.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ you should start at https://stomp-js.github.io/api-docs/latest/classes/Client.ht
|
|
|
44
44
|
|
|
45
45
|
if you were using an older version of this library, you would need to make changes
|
|
46
46
|
to your code. Head to
|
|
47
|
-
[Upgrading](https://stomp-js.github.io
|
|
47
|
+
[Upgrading](https://stomp-js.github.io/#upgrading).
|
|
48
48
|
|
|
49
49
|
## Usage with RxJS
|
|
50
50
|
|
package/bundles/stomp.umd.js
CHANGED
|
@@ -209,9 +209,9 @@ class Client {
|
|
|
209
209
|
this.stompVersions = _versions__WEBPACK_IMPORTED_MODULE_2__["Versions"].default;
|
|
210
210
|
/**
|
|
211
211
|
* Will retry if Stomp connection is not established in specified milliseconds.
|
|
212
|
-
* Default
|
|
212
|
+
* Default 0, which implies wait for ever.
|
|
213
213
|
*/
|
|
214
|
-
this.connectionTimeout =
|
|
214
|
+
this.connectionTimeout = 0;
|
|
215
215
|
/**
|
|
216
216
|
* automatically reconnect with delay in milliseconds, set to 0 to disable.
|
|
217
217
|
*/
|