NekoX/TMessagesProj/src/main/java/org/webrtc/StatsObserver.java

18 lines
649 B
Java
Raw Normal View History

2020-03-30 14:00:09 +02:00
/*
2020-08-14 18:58:22 +02:00
* Copyright 2013 The WebRTC project authors. All Rights Reserved.
2020-03-30 14:00:09 +02:00
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
2020-08-14 18:58:22 +02:00
package org.webrtc;
2020-03-30 14:00:09 +02:00
2020-08-14 18:58:22 +02:00
/** Interface for observing Stats reports (see webrtc::StatsObservers). */
public interface StatsObserver {
/** Called when the reports are ready.*/
@CalledByNative public void onComplete(StatsReport[] reports);
}