I want to do some work when certain event happened.
To solve this problem using Android SDK I can create BroadcastReceiver that will start IntentService that will do the job.
Instead of using Android classes I want use normal Java classes to do the same thing.
How can I solve same problem using Otto and Dagger?