Package 

Class 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.

    • Method Summary

      Modifier and Type Method Description
      abstract void onPlaylist(Playlist playlist) This method must be implemented to handle the Playlist object returned from an asynchronousoperation.
      • Methods inherited from class com.brightcove.player.edge.ErrorListener

        onError, onError
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onPlaylist

         abstract void onPlaylist(Playlist playlist)

        This method must be implemented to handle the Playlist object returned from an asynchronousoperation.

        Parameters:
        playlist - The Playlist object provided by the asynchronous operation.