ResponseHandler

interface ResponseHandler<T : Any>

Interface for handling asynchronous results fom API operations.

This is primarily to support applications written in Java. Applications using Kotlin should prefer to call the suspend methods directly using coroutines.

Functions

Link copied to clipboard
abstract fun onFailure(error: AxpSdkError)
Link copied to clipboard
abstract fun onSuccess(result: T)