-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for one-time tasks with just @scheduled(initialDelay=...)
Closes gh-31211
- Loading branch information
Showing
10 changed files
with
312 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
spring-context/src/main/java/org/springframework/scheduling/config/DelayedTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright 2002-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.scheduling.config; | ||
|
||
import java.time.Duration; | ||
|
||
import org.springframework.util.Assert; | ||
|
||
/** | ||
* {@link Task} implementation defining a {@code Runnable} with an initial delay. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 6.1 | ||
*/ | ||
public class DelayedTask extends Task { | ||
|
||
private final Duration initialDelay; | ||
|
||
|
||
/** | ||
* Create a new {@code DelayedTask}. | ||
* @param runnable the underlying task to execute | ||
* @param initialDelay the initial delay before execution of the task | ||
*/ | ||
public DelayedTask(Runnable runnable, Duration initialDelay) { | ||
super(runnable); | ||
Assert.notNull(initialDelay, "InitialDelay must not be null"); | ||
this.initialDelay = initialDelay; | ||
} | ||
|
||
/** | ||
* Copy constructor. | ||
*/ | ||
DelayedTask(DelayedTask task) { | ||
super(task.getRunnable()); | ||
Assert.notNull(task, "DelayedTask must not be null"); | ||
this.initialDelay = task.getInitialDelayDuration(); | ||
} | ||
|
||
|
||
/** | ||
* Return the initial delay before first execution of the task. | ||
*/ | ||
public Duration getInitialDelayDuration() { | ||
return this.initialDelay; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,5 +56,4 @@ public FixedRateTask(Runnable runnable, Duration interval, Duration initialDelay | |
super(task); | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
spring-context/src/main/java/org/springframework/scheduling/config/OneTimeTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright 2002-2023 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.scheduling.config; | ||
|
||
import java.time.Duration; | ||
|
||
/** | ||
* {@link Task} implementation defining a {@code Runnable} with an initial delay. | ||
* | ||
* @author Juergen Hoeller | ||
* @since 6.1 | ||
* @see ScheduledTaskRegistrar#addOneTimeTask(DelayedTask) | ||
*/ | ||
public class OneTimeTask extends DelayedTask { | ||
|
||
/** | ||
* Create a new {@code DelayedTask}. | ||
* @param runnable the underlying task to execute | ||
* @param initialDelay the initial delay before execution of the task | ||
*/ | ||
public OneTimeTask(Runnable runnable, Duration initialDelay) { | ||
super(runnable, initialDelay); | ||
} | ||
|
||
OneTimeTask(DelayedTask task) { | ||
super(task); | ||
} | ||
|
||
} |
Oops, something went wrong.