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?
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?