GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeResult - Android

The result for a closure that processes the result of an asynchronous operation.

  • If the operation is successful, the result will be BlazeResult.Success().
  • If the operation encountered an error, the result will be
BlazeResult.Error(     
  domain: ErrorDomain?,
  reason: ErrorReason?,
  message: String?,
  cause: Exception?
)

Did this page help you?