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 void
runAsync(java.lang.Runnable completeCallback)
Run thisAsyncTask
in an async fashion.
-
-
-
Method Detail
-
runAsync
void runAsync(java.lang.Runnable completeCallback)
Run thisAsyncTask
in an async fashion. Which means it will be run and completed at some point. Once it is done theRunnable
is called- Parameters:
completeCallback
- TheRunnable
that is run once the task was run and completed.
-
-