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?