From e048bab28104d03dffb628277f07b2d83a8dbeb9 Mon Sep 17 00:00:00 2001 From: Yu-Han Yang Date: Wed, 4 Apr 2018 21:28:15 -0700 Subject: [PATCH] Update Java doc of GnssMeasurementEvent#STATUS_NOT_ALLOWED Bug: 74218424 Test: N/A Change-Id: Icf7fae3b252ce44d3a82cdce06b4dd78026f6fb7 --- location/java/android/location/GnssMeasurementsEvent.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/location/java/android/location/GnssMeasurementsEvent.java b/location/java/android/location/GnssMeasurementsEvent.java index 072a7fefb6653..34c73549c5df3 100644 --- a/location/java/android/location/GnssMeasurementsEvent.java +++ b/location/java/android/location/GnssMeasurementsEvent.java @@ -74,6 +74,13 @@ public final class GnssMeasurementsEvent implements Parcelable { /** * The client is not allowed to register for GNSS Measurements in general or in the * requested mode. + * + *

Such a status is returned when a client tries to request a functionality from the GNSS + * chipset while another client has an ongoing request that does not allow such + * functionality to be performed. + * + *

If such a status is received, one would try again at a later time point where no + * other client is having a conflicting request. */ public static final int STATUS_NOT_ALLOWED = 3;