public
static
interface
MediaSync.OnErrorListener
android.media.MediaSync.OnErrorListener |
Interface definition of a callback to be invoked when there has been an error during an asynchronous operation (other errors will throw exceptions at method call time).
Public methods | |
---|---|
abstract
void
|
onError(MediaSync sync, int what, int extra)
Called to indicate an error. |
void onError (MediaSync sync, int what, int extra)
Called to indicate an error.
Parameters | |
---|---|
sync |
MediaSync :
The MediaSync the error pertains to |
what |
int :
The type of error that has occurred:
|
extra |
int :
an extra code, specific to the error. Typically
implementation dependent.
|