Class AsyncTask<T>

  • All Implemented Interfaces:
    Task

    public class AsyncTask<T>
    extends AbstractTask

    AsyncTask class.

    Version:
    $Id: $
    Author:
    ranger
    • Method Detail

      • doSubmit

        protected void doSubmit()
        This method submits a task to be executed and is called when all dependencies are completed for that task This method should place a runnable on an executor or submit the task in some other way so that it will run as soon as possible. Tasks that have no processing to be done may override completeSubmit to notify the Task coordinator that the task is done.
        Overrides:
        doSubmit in class AbstractTask