Fix variable names in the ConnectionStatusListener interface

This commit is contained in:
Cameron Gutman 2014-05-12 19:41:04 -05:00
parent 0c8c108bd1
commit 0f815a0085

View File

@ -3,9 +3,9 @@ package com.limelight.nvstream.av;
public interface ConnectionStatusListener { public interface ConnectionStatusListener {
public void connectionTerminated(); public void connectionTerminated();
public void connectionDetectedFrameLoss(int firstLostFrame, int lastLostFrame); public void connectionDetectedFrameLoss(int firstLostFrame, int nextSuccessfulFrame);
public void connectionSinkTooSlow(int firstLostFrame, int lastLostFrame); public void connectionSinkTooSlow(int firstLostFrame, int nextSuccessfulFrame);
public void connectionReceivedFrame(int frameIndex); public void connectionReceivedFrame(int frameIndex);