Back to project page andrioidaudiostream.
The source code is released under:
GNU General Public License
If you think the Android project andrioidaudiostream listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.speakingcode.android.media.mediaplayer; // w w w .j a v a 2 s . c o m /** * Created by unknown on 9/15/14. */ public interface IMediaPlayerServiceClient { /** * A callback made by a MediaPlayerService onto its clients to indicate that a player is initializing. */ public void onInitializePlayerStart(); /** * A callback made by a MediaPlayerService onto its clients to indicate that a player was successfully initialized. */ public void onInitializePlayerSuccess(); /** * A callback made by a MediaPlayerService onto its clients to indicate that a player encountered an error. */ public void onError(); }