DoNothingListener

A no-op implementation of the FRListener interface that does nothing when the asynchronous operation completes. This can be used when you want to start an asynchronous operation, but don't care about the result.

Parameters

The type of the result.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
open override fun onException(e: Exception)

Does nothing when the operation fails.

Link copied to clipboard
open override fun onSuccess(result: T)

Does nothing when the operation completes successfully.