OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 package org.chromium.net; | |
6 | |
7 /** | |
8 * Interface to watch for observations of round trip times. | |
9 */ | |
10 public interface NetworkQualityRTTObserver { | |
miloslav
2015/09/05 18:52:40
The rest of Cronet uses "Acronyms as words": https
bengr
2015/09/14 21:04:35
Done.
| |
11 /** | |
12 * Reports a new round trip time observation. This is called on the network thread, so the | |
13 * observer should exit quickly. | |
14 * @param rttMs The round trip time in milliseconds. | |
15 * @param whenMs The time since the epoch in milliseconds. | |
16 * @param source The observation source from {@link NetworkQualityObservatio nSource}. | |
pauljensen
2015/09/02 16:54:48
So I do love GENERATED_JAVA_ENUM_PACKAGE...but I'm
bengr
2015/09/14 21:04:35
Let's leave it as is here, until we're more confid
| |
17 */ | |
18 public void onRTTObservation(int rttMs, long whenMs, int source); | |
19 } | |
OLD | NEW |