blob: b9984c18db7492a2cb5ac7e7c91c6baf9301b4f8 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
kjellanderb24317b2016-02-10 07:54:43 -08002 * Copyright 2013 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00003 *
kjellanderb24317b2016-02-10 07:54:43 -08004 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:36 +00009 */
10
11package org.webrtc;
12
13/** Interface for observing Stats reports (see webrtc::StatsObservers). */
14public interface StatsObserver {
15 /** Called when the reports are ready.*/
Magnus Jedvertbba8e9e2017-11-29 19:27:06 +010016 @CalledByNative public void onComplete(StatsReport[] reports);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000017}