-
public interface OnBufferUpdateListenerInterface definition of a callback to be invoked indicating buffering status of a media resource being streamed.
-
-
Method Summary
Modifier and Type Method Description abstract voidonBufferingUpdate(int percent)Called to update status in buffering a media stream.The received buffering percentageindicates how much of the content has been buffered or played.For example a buffering update of 80 percent when half the contenthas already been played indicates that the next 30 percent of thecontent to play has been buffered. -
-
Method Detail
-
onBufferingUpdate
abstract void onBufferingUpdate(int percent)
Called to update status in buffering a media stream.The received buffering percentageindicates how much of the content has been buffered or played.For example a buffering update of 80 percent when half the contenthas already been played indicates that the next 30 percent of thecontent to play has been buffered.
- Parameters:
percent- The integer percent that is buffered [0, 100] inclusive
-
-
-
-