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
i do submit several object using the post() method from a service who fetch data from a third part .
( a listener who receive data and send it immediately to an activity using post method)
the activity in question has been registred using register(this) inside onCreate function.
in some devices ( slower ones ) , the object never received in onMessageEvent method .
my scenario :
loop of 100 object to be submitted to the same activity .
display a log before the post call , and inside the onMessageEvent call.
result :
100 lines logged before the post call
75 lines logged inside onMessageEvent
The text was updated successfully, but these errors were encountered:
i do submit several object using the
post()
method from a service who fetch data from a third part .( a listener who receive data and send it immediately to an activity using post method)
the activity in question has been registred using
register(this)
insideonCreate
function.in some devices ( slower ones ) , the object never received in
onMessageEvent
method .my scenario :
loop of 100 object to be submitted to the same activity .
display a log before the post call , and inside the onMessageEvent call.
result :
100 lines logged before the post call
75 lines logged inside onMessageEvent
The text was updated successfully, but these errors were encountered: