ConnectionCallback
class ConnectionCallback
kotlin.Any | |
↳ | android.support.v4.media.MediaBrowserCompat.ConnectionCallback |
Callbacks for connection related events.
Summary
Public constructors |
|
---|---|
<init>() |
Public methods |
|
---|---|
open Unit |
Invoked after |
open Unit |
Invoked when the connection to the media browser service failed. |
open Unit |
Invoked when a connection to the browser service has been lost. |
Public constructors
<init>
ConnectionCallback()
Public methods
onConnected
open fun onConnected(): Unit
Invoked after MediaBrowserCompat#connect()
when the request has successfully completed. This can also be called when the service is next running after it crashed or has been killed.
onConnectionFailed
open fun onConnectionFailed(): Unit
Invoked when the connection to the media browser service failed. Connection failures can happen when the browser failed to bind to the service, or when it is rejected from the service.
onConnectionSuspended
open fun onConnectionSuspended(): Unit
Invoked when a connection to the browser service has been lost. This typically happens when the process hosting the service has crashed or been killed. This does not remove the connection itself -- this binding to the service will remain active, and onConnected()
will be called when the service is next running.