We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bfddbc commit 5e42a6eCopy full SHA for 5e42a6e
framework-docs/src/docs/asciidoc/integration/scheduling.adoc
@@ -179,7 +179,7 @@ is quite simple, as the following listing shows:
179
----
180
public interface Trigger {
181
182
- Date nextExecutionTime(TriggerContext triggerContext);
+ Instant nextExecution(TriggerContext triggerContext);
183
}
184
185
@@ -192,11 +192,11 @@ default). The following listing shows the available methods for `Trigger` implem
192
193
public interface TriggerContext {
194
195
- Date lastScheduledExecutionTime();
+ Instant lastScheduledExecution();
196
197
- Date lastActualExecutionTime();
+ Instant lastActualExecution();
198
199
- Date lastCompletionTime();
+ Instant lastCompletion();
200
201
202
0 commit comments