Reputation: 26498
Android broadcast is a good IPC mechanism, but sometimes i only need broadcast or event notification within a process. I want to know if there's something like in-process broadcast?
Upvotes: 1
Views: 140
Reputation: 198597
You may be interested in Otto. It's a publish subscribe library based on Google Guava, and made specifically for Android.
Upvotes: 0
Reputation: 1006849
Use LocalBroadcastManager
, found in the Android Support package. Here is a sample application demonstrating its use. Mostly it involves calling methods like registerReceiver()
and sendBroadcast()
on LocalBroadcastManager.getInstance(this)
instead of directly on a Context
.
Upvotes: 1