If I have an inner class that extends BroadcastReceiver
within my Service
class, should I care about synchronization, when the BroadcastReceiver
class reads/writes to objects from the Service
class?
Or to put it in another way: Are BroadacstReceiver
's onReceive()
Methods started in an extra thread?