AsyncTask

Last Updated On 2021-07-16

Version 1MinSDK 7Tutorial Video

Run Functions Asynchronously or in the
Background when the App is Closed(Coming Soon)



Methods

You can set the below method blocks in the blocks section of the builder.

Call

Calls the procedure in the current screen with the given name.

CallAfterDelay

Calls the procedure on the UI thread after waiting delay milliseconds on a separate thread.

CallAfterDelayWithArgs

Calls the procedure on the UI thread with the given arguments after waiting delay milliseconds on a separate thread.

CallAsynchronous

Calls the procedure in the current screen on a thread separate from the UI thread.

CallAsynchronousWithArgs

Calls the procedure in the current screen on a thread separate from the UI thread with the given list of arguments.

CallWithArgs

Calls the procedure in the current screen with a list of arguments.


Events

You can set the below event blocks in the blocks section of the builder.

CallFinishedWithResult

After an asynchronous procedure call, this event is run with the results of the invocation.