Package com.brightcove.player.edge
Class VideoListener
- java.lang.Object
-
- com.brightcove.player.edge.ErrorListener
-
- com.brightcove.player.edge.VideoListener
-
public abstract class VideoListener extends ErrorListener
VideoListener identifies objects that expect to receive a Video object from an asynchronous operation. Note that on a successful operation, onVideo() should be called. Otherwise, onError() will be called.
-
-
Constructor Summary
Constructors Constructor Description VideoListener()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidonVideo(Video video)This method must be implemented to handle the Video object returned from an asynchronous operation.-
Methods inherited from class com.brightcove.player.edge.ErrorListener
onError, onError
-
-
-
-
Method Detail
-
onVideo
public abstract void onVideo(Video video)
This method must be implemented to handle the Video object returned from an asynchronous operation.- Parameters:
video- The Video object provided by the asynchronous operation.
-
-