-
Notifications
You must be signed in to change notification settings - Fork 95
Open
Labels
Description
I am trying to integrate STOMP on my reactNative Project...
When I open my debug mode everything works fine but when i close my debug mode and run it normally it is not able to fetch data//
alert('Component did mount');
client.configure({
brokerURL: 'ws://x.x.x.x:xxxx/stomp',
onConnect: () => {
alert('onConnect');
client.subscribe('topic', message => {
console.log('show msg...',message);
console.lo('show msg body...',message.body);
});
client.subscribe('topic', message => {
console.log(message);
});
},
});
client.activate();
Reactions are currently unavailable