@Retention(value=CLASS)
@Target(value=METHOD)
public @interface FixedDelay
Mark a method to be a job called at fixed delay time
public abstract java.lang.String value
Specifies the delayed time to execute the method. Time could be specified in days, hours, minutes and seconds. For example:
Note, combination time specification is not supported. For example "1d 5h 30mn"
will be considered to be illegal argument
If this option is miss specified, then the default value will be set to 1s
one second
The value shall not be zero or negative, otherwise IllegalArgumentException will be thrown out
Default value: 60s
Copyright © 2014–2017 ActFramework. All rights reserved.