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
The spinOnce method of MessageManager is blocking if no messages are currently
available to process. Since the purpose of such a method is generally to run
in realtime critical time slices, such behavior probably needs to be
redesigned. A useful workaround seems to be preceding the call with a
"if(connection.isReadyReceive(0))". However, calling this explicitly under the
current code base is impossible since the method is protected. In my code, I
have modified the call to be public.
Original issue reported on code.google.com by kphawk...@gmail.com on 23 May 2013 at 3:52
The text was updated successfully, but these errors were encountered:
Good catch. You change seems appropriate (making that function public won't
hurt anything). Could you please update the header file comment to reflect the
actual behavior of the function (i.e. non blocking when zero is passed, it
currently says the opposite).
Original comment by shaun.ed...@gmail.com on 23 May 2013 at 7:13
Original issue reported on code.google.com by
kphawk...@gmail.com
on 23 May 2013 at 3:52The text was updated successfully, but these errors were encountered: