JavaScript is disabled on your browser.
Skip navigation links
Package
Class
Use
Tree
Deprecated
Index
Search
Help
io.netty.internal.tcnative
AsyncTask
Contents
Description
Method Summary
Method Details
runAsync(Runnable)
Hide sidebar
Show sidebar
Interface AsyncTask
All Superinterfaces:
Runnable
public interface
AsyncTask
extends
Runnable
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
void
runAsync
(
Runnable
completeCallback)
Run this
AsyncTask
in an async fashion.
Methods inherited from interface
Runnable
run
Method Details
runAsync
void
runAsync
(
Runnable
completeCallback)
Run this
AsyncTask
in an async fashion. Which means it will be run and completed at some point. Once it is done the
Runnable
is called
Parameters:
completeCallback
- The
Runnable
that is run once the task was run and completed.