Polish
Add period unit in the description so that it shows up in the summary description.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2013 the original author or authors.
|
* Copyright 2002-2016 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@@ -72,28 +72,30 @@ public @interface Scheduled {
|
|||||||
String zone() default "";
|
String zone() default "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the annotated method with a fixed period between the end
|
* Execute the annotated method with a fixed period in milliseconds between the
|
||||||
* of the last invocation and the start of the next.
|
* end of the last invocation and the start of the next.
|
||||||
* @return the delay in milliseconds
|
* @return the delay in milliseconds
|
||||||
*/
|
*/
|
||||||
long fixedDelay() default -1;
|
long fixedDelay() default -1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the annotated method with a fixed period between the end
|
* Execute the annotated method with a fixed period in milliseconds between the
|
||||||
* of the last invocation and the start of the next.
|
* end of the last invocation and the start of the next.
|
||||||
* @return the delay in milliseconds as a String value, e.g. a placeholder
|
* @return the delay in milliseconds as a String value, e.g. a placeholder
|
||||||
* @since 3.2.2
|
* @since 3.2.2
|
||||||
*/
|
*/
|
||||||
String fixedDelayString() default "";
|
String fixedDelayString() default "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the annotated method with a fixed period between invocations.
|
* Execute the annotated method with a fixed period in milliseconds between
|
||||||
|
* invocations.
|
||||||
* @return the period in milliseconds
|
* @return the period in milliseconds
|
||||||
*/
|
*/
|
||||||
long fixedRate() default -1;
|
long fixedRate() default -1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the annotated method with a fixed period between invocations.
|
* Execute the annotated method with a fixed period in milliseconds between
|
||||||
|
* invocations.
|
||||||
* @return the period in milliseconds as a String value, e.g. a placeholder
|
* @return the period in milliseconds as a String value, e.g. a placeholder
|
||||||
* @since 3.2.2
|
* @since 3.2.2
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user