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
In my case it is not dropping. The messages are getting printing on the console for the topic which I subscribed, to handle this issue what I am did is that I made an emitter and pushed the data onto that emitter. After that I subscribed that emitter in my code and my problem got resolved.
val dispTopic = mStompClient!!.topic("/user/balance", subscribeHeaders)
.subscribe({ it ->
Log.d("Storm", "data")
})
After subscription to topic I am not able to receive data.
Data prints in the console but not prints here.
Can you help me on this?
The text was updated successfully, but these errors were encountered: