Interface AsyncTask

All Superinterfaces:
Runnable
All Known Implementing Classes:
SSLPrivateKeyMethodDecryptTask, SSLPrivateKeyMethodSignTask, SSLPrivateKeyMethodTask

public interface AsyncTask extends Runnable
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    runAsync(Runnable completeCallback)
    Run this AsyncTask in an async fashion.

    Methods inherited from interface java.lang.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.