File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,11 +64,11 @@ class MyClass { // extends ...
6464@Receive (action = {Intent . ACTION_SCREEN_ON , Intent . ACTION_SCREEN_OFF })
6565onScreenChange(Context context, Intent intent) { ... } // multiple
6666
67- @Receive (action = { " custom1" , " custom2 " } , threadMode = ThreadModus . ASYNC )
68- onCustom () { ... } // asynchronous
67+ @Receive (action = " custom1" , threadMode = ThreadModus . ASYNC )
68+ onCustomAsync () { ... } // asynchronous
6969
7070@Receive (action = Intent . ACTION_SHUTDOWN )
71- static withoutRegister() { ... } // static - called once regardless of registration
71+ static withoutRegister() { ... } // static - called regardless of registration
7272```
7373
7474#### To register Breadcast implicit via manifest, use _ ManifestBreadcast_
You can’t perform that action at this time.
0 commit comments