Deepak Kumar

Results 240 comments of Deepak Kumar

@s1vert I think I undertsand the issue now. It will need to be fixed in underlying library as well as in this one. It will be done in next major...

@sahyun1 this thread has two different issues mentioned. The original question - multiple subscriptions - that has always worked. There was one more issue that some functions were altering the...

Could not understand your query. Please post some code sample.

Probably you want the following (I haven't executed the code, just typed here): ```typescript get(topic) { return this._stompService.subscribe(`/topic/${topic}`).subscribe((message) => { // Do something }); } // Subscribe this.messages = this.get('demo1');...

Actually the code related to this functionality has been rewritten bottom up. If the file is not confidential in nature please attach the file here or email me at [email protected]...

The test cases cover 1MB payloads. So, not sure what may be the issue. The test cases are run against RabbitMQ using plain WebSockets.

StompRService is still available but it uses RxStompService under the hood. Still it may be worth a try. One thing that has changed in handling of text content - it...

I am assuming you are able to receive large body payload but are not able to send it. I have gone through the differences one more time. One more aspect...

That probably is one of the brokers (actually only one that I know of) that supports receiving split packets the way previous version of @stomp/stompjs did. I will not be...

Good news that I have been able to send the larger packet with added code for splitting large packets. However this is not compliant with WebSocket and STOMP specifications. Actually...