run

open fun run()

Executes the action asynchronously.


open fun run(@Nullable callback: ActionCompletionCallback)

Executes the action asynchronously with a callback.

Parameters

callback

The action completion callback.


open fun run(@Nullable looper: Looper, @Nullable callback: ActionCompletionCallback)

Executes the action asynchronously with a callback.

Parameters

callback

The action completion callback.

looper

A Looper object whose message queue will be used for the callback, or null to make callbacks on the calling thread or main thread if the current thread does not have a looper associated with it.