]> sjero.net Git - linphone/blobdiff - coreapi/help/java/org/linphone/core/tutorials/TutorialHelloWorld.java
Add JNI to access call statistics.
[linphone] / coreapi / help / java / org / linphone / core / tutorials / TutorialHelloWorld.java
index 354f9750157ca6bca611fc30bb564ff96935690c..4b63e88133f0101a5334aeb019d3033968966ea9 100644 (file)
@@ -20,6 +20,7 @@ package org.linphone.core.tutorials;
 
 import org.linphone.core.LinphoneAddress;
 import org.linphone.core.LinphoneCall;
+import org.linphone.core.LinphoneCallStats;
 import org.linphone.core.LinphoneChatMessage;
 import org.linphone.core.LinphoneChatRoom;
 import org.linphone.core.LinphoneCore;
@@ -69,6 +70,7 @@ public class TutorialHelloWorld implements LinphoneCoreListener {
        public void newSubscriptionRequest(LinphoneCore lc, LinphoneFriend lf,String url) {}
        public void notifyPresenceReceived(LinphoneCore lc, LinphoneFriend lf) {}
        public void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from, String message) {}
+       public void callStatsUpdated(LinphoneCore lc, LinphoneCall call, LinphoneCallStats stats) {}
        public void ecCalibrationStatus(LinphoneCore lc, EcCalibratorStatus status,int delay_ms, Object data) {}
        public void callEncryptionChanged(LinphoneCore lc, LinphoneCall call,boolean encrypted, String authenticationToken) {}
        public void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event){}