Added in API level 22
ResultCallback
interface ResultCallback<T : Any!>
| android.service.carrier.CarrierMessagingService.ResultCallback |
A callback interface used to provide results asynchronously.
Summary
| Public methods | |
|---|---|
| abstract Unit |
onReceiveResult(result: T)Invoked when the result is available. |
Public methods
onReceiveResult
Added in API level 22
abstract fun onReceiveResult(result: T): Unit
Invoked when the result is available.
| Parameters | |
|---|---|
result |
T: the result This value cannot be null. |