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