Lines Matching refs:dispatcher
3 ## What is this dispatcher?
5 This is an internal dispatcher class for global broadcasts that SystemUI components want to receive…
7 ## Why use the dispatcher?
13 * The dispatcher immediately moves out of the main thread upon broadcast, giving back control to `s…
14 * The dispatcher significantly reduces time spent in main thread by handling most operations in a b…
16 ## Should I use the dispatcher?
18 The dispatcher supports `BroadcastReceiver` dynamic subscriptions in the following cases:
26 Additionally, the dispatcher supports the following:
33 …ed in `AndroidManifest`) that satisfies the constraints above, use the dispatcher to reduce the lo…
47 * Do not use the dispatcher to obtain the last broadcast (by passing a null `BroadcastReceiver`). `…
50 ## How do I use the dispatcher?
52 Acquire the dispatcher by using `@Inject` to obtain a `BroadcastDispatcher`. Then, use the followin…
58 * Register a receiver for broadcast with the dispatcher