Package io.netty.internal.tcnative
Interface AsyncTask
-
- All Superinterfaces:
java.lang.Runnable
- All Known Implementing Classes:
SSLPrivateKeyMethodDecryptTask,SSLPrivateKeyMethodSignTask,SSLPrivateKeyMethodTask
public interface AsyncTask extends java.lang.Runnable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrunAsync(java.lang.Runnable completeCallback)Run thisAsyncTaskin an async fashion.
-
-
-
Method Detail
-
runAsync
void runAsync(java.lang.Runnable completeCallback)
Run thisAsyncTaskin an async fashion. Which means it will be run and completed at some point. Once it is done theRunnableis called- Parameters:
completeCallback- TheRunnablethat is run once the task was run and completed.
-
-