TaskQueue icon indicating copy to clipboard operation
TaskQueue copied to clipboard

How to retry if onExecute() has not good result ?

Open bidasknakayama opened this issue 7 years ago • 0 comments

Hi, I am testing TaskQueue. It look like very good : )

protected Boolean onExecute() throws Exception {
     if( a_Task() == true ){
           return true;
     }else{
           return false;
     }
}

When False, I want to retry Task. How to write it ? We need more example.

Kazu

bidasknakayama avatar Sep 15 '18 04:09 bidasknakayama