Interface BackgroundTaskService.ProgressTask<T>

All Superinterfaces:
Callable<T>
Enclosing class:
BackgroundTaskService

public static interface BackgroundTaskService.ProgressTask<T> extends Callable<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
    onProgress(double progress)
     
    void
    onSuccess(T result)
     

    Methods inherited from interface java.util.concurrent.Callable

    call
  • Method Details

    • onSuccess

      void onSuccess(T result)
    • onError

      void onError(Exception e)
    • onProgress

      void onProgress(double progress)