Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application, I'm creating TelephonyManager object and listener to this object for LISTEN_DATA_ACTIVITY and LISTEN_DATA_CONNECTION_STATE in onCreate.

When I communicate via tcp or udp socket with my server, I see DATA_ACTIVITY_IN and other expected states after I receive the respond. For example, high speed is fired after I receive the respond.

Let's say my udp packet receive is here:

udpSocket.receive(receivedDatagramPacket); //this waits until respond is received myLogger.info("RESPOND");

But I read such logs (first 3 lines are fine and written just to show the communication):

REQUEST
OUT
NONE
RESPOND
HSDPA //if the download fires the high speed
IN
NONE

The logical way would be(first 2 can switch):

HSDPA
IN
RESPOND

What could be the reason of it? Somehow thread safety? I'd checked that the logger is thread-safe but what about listener?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.