Added in API level 23
  
  
  
  
MediaSync.OnErrorListener
  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).
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        void | 
      onError(MediaSync sync, int what, int extra)
      Called to indicate an error. | 
Public methods
onError
    Added in API level 23
  
      
  
    public abstract void onError (MediaSync sync, int what, int extra)
Called to indicate an error.
| Parameters | |
|---|---|
| sync | MediaSync: The MediaSync the error pertains to
 This value cannot benull. | 
| what | int: The type of error that has occurred: | 
| extra | int: an extra code, specific to the error. Typically
 implementation dependent. | 
