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

      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 java.lang.Object

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

      • PlaylistListener

        public PlaylistListener()
    • 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.