Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7103476 authored by Cody Kesting's avatar Cody Kesting Committed by Automerger Merge Worker
Browse files

Merge "Clarify comments for Connectivity Diagnostics reports." am: b187c3c1...

Merge "Clarify comments for Connectivity Diagnostics reports." am: b187c3c1 am: f4301de6 am: c2f2e461

Change-Id: I617f5361a7564d3d4fe2a962887e4666d2a0695f
parents 9b558f9c c2f2e461
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -659,8 +659,8 @@ public class ConnectivityDiagnosticsManager {
    public abstract static class ConnectivityDiagnosticsCallback {
        /**
         * Called when the platform completes a data connectivity check. This will also be invoked
         * immediately upon registration with the latest report, if a report has already been
         * generated for this network.
         * immediately upon registration for each network matching the request with the latest
         * report, if a report has already been generated for that network.
         *
         * <p>The Network specified in the ConnectivityReport may not be active any more when this
         * method is invoked.
+3 −2
Original line number Diff line number Diff line
@@ -244,8 +244,9 @@ public class NetworkAgentInfo implements Comparable<NetworkAgentInfo> {
    // How many of the satisfied requests are of type BACKGROUND_REQUEST.
    private int mNumBackgroundNetworkRequests = 0;

    // The last ConnectivityReport made available for this network.
    private ConnectivityReport mConnectivityReport;
    // The last ConnectivityReport made available for this network. This value is only null before a
    // report is generated. Once non-null, it will never be null again.
    @Nullable private ConnectivityReport mConnectivityReport;

    public final Messenger messenger;
    public final AsyncChannel asyncChannel;