Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark BroadcastReceiver.onReceive parameters as non-null #358

Merged
merged 2 commits into from
Mar 25, 2024

Conversation

twyatt
Copy link
Member

@twyatt twyatt commented Mar 22, 2024

Android examples show parameters as non-null; additionally, per "can ever the intent received by a BroadcastReceiver be null?" on Stackoverflow:

onReceive in a BroadcastReceiver is triggered by an Intent with an action that it's registered to. So without Intent being an instance of Intent and not null, the onReceive method would never get called.

It would also be better to throw an NPE (and be made aware of a bug) than for it to fail silently (and never emit a value).

[Android examples] show parameters as non-`null`; additionally, per
"can ever the intent received by a BroadcastReceiver be null?" on
[Stackoverflow]:

> `onReceive` in a `BroadcastReceiver` is triggered by an `Intent` with
> an action that it's registered to. So without `Intent` being an
> instance of `Intent` and not `null`, the `onReceive` method would
> never get called.

It would also be better to throw an NPE (and be made aware of a bug)
than for it to fail silently (and never emit a value).

[Android examples]: https://developer.android.com/develop/background-work/background-tasks/broadcasts#receiving-broadcasts
[Stackoverflow]: https://stackoverflow.com/a/17535679
@twyatt twyatt added the patch Changes that should bump the PATCH version number label Mar 22, 2024
@twyatt twyatt requested a review from a team as a code owner March 22, 2024 18:19
Copy link

github-actions bot commented Mar 22, 2024

Test Results

100 files  ±0  100 suites  ±0   11s ⏱️ +2s
845 tests ±0  836 ✅ ±0   9 💤 ±0  0 ❌ ±0 
862 runs  ±0  848 ✅ ±0  14 💤 ±0  0 ❌ ±0 

Results for commit 2cad010. ± Comparison against base commit a623b37.

♻️ This comment has been updated with latest results.

@twyatt twyatt enabled auto-merge (squash) March 22, 2024 20:54
@twyatt twyatt merged commit c2ff6d1 into main Mar 25, 2024
3 checks passed
@twyatt twyatt deleted the twyatt/broadcastReceiverFlow branch March 25, 2024 20:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
patch Changes that should bump the PATCH version number
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants