Update Javadoc comments for ConnectivityDiagnostics constants.
API Council feedback requested adding documentation for detection method constants used in DataStallReport to indicate how the Data Stall was detected. Bug: 150598997 Test: n/a Change-Id: Ib08f05562dd4b17973eeee97452d9f56d37e80fe Merged-In: Ib08f05562dd4b17973eeee97452d9f56d37e80fe (cherry picked from commit 52d9e61121883945931de533b5cfd44da30c0248)
This commit is contained in:
committed by
Cody Kesting
parent
417004a722
commit
025f73910a
@@ -368,7 +368,14 @@ public class ConnectivityDiagnosticsManager {
|
|||||||
|
|
||||||
/** Class that includes information for a suspected data stall on a specific Network */
|
/** Class that includes information for a suspected data stall on a specific Network */
|
||||||
public static final class DataStallReport implements Parcelable {
|
public static final class DataStallReport implements Parcelable {
|
||||||
|
/**
|
||||||
|
* Indicates that the Data Stall was detected using DNS events.
|
||||||
|
*/
|
||||||
public static final int DETECTION_METHOD_DNS_EVENTS = 1;
|
public static final int DETECTION_METHOD_DNS_EVENTS = 1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates that the Data Stall was detected using TCP metrics.
|
||||||
|
*/
|
||||||
public static final int DETECTION_METHOD_TCP_METRICS = 2;
|
public static final int DETECTION_METHOD_TCP_METRICS = 2;
|
||||||
|
|
||||||
/** @hide */
|
/** @hide */
|
||||||
|
|||||||
Reference in New Issue
Block a user