I have an instance of object A that has a accumulator and a BroadcastReceiver that will increment the accumulator.
I have an IntentService that receives the object A as a parcel in the intent, sends the value via the SmsManager and when the "sent" pendingIntent calls back the the broadcast receiver of A will increment the accumulator of A.
This should work but I can't find a way to add the BroadcastReceiver to the parcel. Is it possible? Or is there some workaround?