Add javadoc for isDeferUntilActive().

Bug: 267312444
Test: TH
Change-Id: I9f925b4b8eac6552378cbb5bd7669b77a27901b9
This commit is contained in:
Sudheer Shanka
2023-01-31 09:22:09 -08:00
parent 8970870803
commit ba90d6dc1f

View File

@@ -716,7 +716,15 @@ public class BroadcastOptions extends ComponentOptions {
return this;
}
/** @hide */
/**
* Returns if this broadcast should not run until the process is in an active process state.
*
* @return {@code true} if this broadcast should not run until the process is in an active
* process state. Otherwise, {@code false}.
* @see #setDeferUntilActive(boolean)
*
* @hide
*/
@SystemApi
public boolean isDeferUntilActive() {
return mIsDeferUntilActive;