views:

65

answers:

1

I've a service that is receiving UDP data from the network. I want to push this data from the service to a UI activity.

One way to do it is using broadcast Intents. What is the performance overhead of sending broadcasts frequently from the service to the activities?

Are there any other alternatives for doing this ?

Thanks.

+1  A: 

Not sure of the overhead of Broadcasting Intents but a topic similar to this was discussed a few days ago.

BrennaSoft