-
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. -
-
Method Detail
-
onBufferingUpdate
abstract void onBufferingUpdate(int percent)
Called to update status in buffering a media stream. The received buffering percentage indicates how much of the content has been buffered or played. For example a buffering update of 80 percent when half the content has already been played indicates that the next 30 percent of the content to play has been buffered.
- Parameters:
percent- The integer percent that is buffered [0, 100] inclusive
-
-
-
-