Schedule (Yearly)

The Schedule trigger runs the operation, at yearly basis.

Block

Text

onScheduledYear([],[],0,0,()=>{
                1  2  3 4
});

1: Month

2: Date

3: Hour

4: Minutes

 

(Example 1)

Every 5th of September, at 8:10.

Block

 

Text

onScheduledYear([$Enums.Month.September],[5],8,10,()=>{

});

(Example 2)

Every 5th and 25th of April and September, at 8:10.

Block

 

Text

onScheduledYear([$Enums.Month.April,$Enums.Month.September],[5,25],8,10,()=>{

});