Class SimpleDeadlineManager
- All Implemented Interfaces:
DeadlineManager,Lifecycle,MessageDispatchInterceptorSupport<DeadlineMessage<?>>,MessageHandlerInterceptorSupport<DeadlineMessage<?>>
DeadlineManager which uses Java's ScheduledExecutorService as scheduling and
triggering mechanism.
Note that this mechanism is non-persistent. Scheduled tasks will be lost then the JVM is shut down, unless special
measures have been taken to prevent that. For more flexible and powerful scheduling options, see
QuartzDeadlineManager.
- Since:
- 3.3
- Author:
- Milan Savic, Steven van Beelen
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder class to instantiate aSimpleDeadlineManager.Nested classes/interfaces inherited from interface org.axonframework.lifecycle.Lifecycle
Lifecycle.LifecycleHandler, Lifecycle.LifecycleRegistry -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInstantiate aSimpleDeadlineManagerbased on the fields contained in theSimpleDeadlineManager.Builderto handle the process around scheduling and triggering aDeadlineMessage. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Instantiate a Builder to be able to create aSimpleDeadlineManager.voidCancels all the deadlines corresponding to the givendeadlineName.voidcancelAllWithinScope(String deadlineName, ScopeDescriptor scope) Cancels all deadlines corresponding to the givendeadlineNameandscope.voidcancelSchedule(String deadlineName, String scheduleId) Cancels the deadline corresponding to the givendeadlineName/scheduleIdcombination.voidRegisters the activities to be executed in the various phases of an application's lifecycle.schedule(Instant triggerDateTime, String deadlineName, Object messageOrPayload, ScopeDescriptor deadlineScope) Schedules a deadline at giventriggerDateTimewith provided context.voidshutdown()Shuts down this deadline manager.Methods inherited from class org.axonframework.deadline.AbstractDeadlineManager
dispatchInterceptors, handlerInterceptors, processDispatchInterceptors, registerDispatchInterceptor, registerHandlerInterceptor, runOnPrepareCommitOrNowMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.axonframework.deadline.DeadlineManager
cancelAllWithinScope, schedule, schedule, schedule, schedule, schedule
-
Constructor Details
-
SimpleDeadlineManager
Instantiate aSimpleDeadlineManagerbased on the fields contained in theSimpleDeadlineManager.Builderto handle the process around scheduling and triggering aDeadlineMessage.Will assert that the
ScopeAwareProvider,ScheduledExecutorServiceandTransactionManagerare notnull, and will throw anAxonConfigurationExceptionif either of them isnull.- Parameters:
builder- theSimpleDeadlineManager.Builderused to instantiate aSimpleDeadlineManagerinstance
-
-
Method Details
-
builder
Instantiate a Builder to be able to create aSimpleDeadlineManager.The
ScheduledExecutorServiceis defaulted to anExecutors.newSingleThreadScheduledExecutor()which contains anAxonThreadFactory, theTransactionManagerdefaults to aNoTransactionManager, and theDeadlineManagerSpanFactoryis defaulted to aDefaultDeadlineManagerSpanFactorybacked by aNoOpSpanFactory. TheScopeAwareProvideris a hard requirement and as such should be provided.- Returns:
- a Builder to be able to create a
SimpleDeadlineManager
-
schedule
public String schedule(@Nonnull Instant triggerDateTime, @Nonnull String deadlineName, Object messageOrPayload, @Nonnull ScopeDescriptor deadlineScope) Description copied from interface:DeadlineManagerSchedules a deadline at giventriggerDateTimewith provided context. The returnedscheduleIdand provideddeadlineNamecombination can be used to cancel the scheduled deadline.The given
messageOrPayloadmay be any object, as well as a DeadlineMessage. In the latter case, the instance provided is the donor for the payload andMetaDataof the actual deadline being used. In the former case, the givenmessageOrPayloadwill be wrapped as the payload of aDeadlineMessage.- Specified by:
schedulein interfaceDeadlineManager- Parameters:
triggerDateTime- AInstantdenoting the moment to trigger the deadline handlingdeadlineName- AStringrepresenting the name of the deadline to schedulemessageOrPayload- AMessageor payload for a message as anObjectdeadlineScope- AScopeDescriptordescribing the scope within which the deadline was scheduled- Returns:
- the
scheduleIdas aStringto use when cancelling the schedule
-
cancelSchedule
Description copied from interface:DeadlineManagerCancels the deadline corresponding to the givendeadlineName/scheduleIdcombination. This method has no impact on deadlines which have already been triggered.- Specified by:
cancelSchedulein interfaceDeadlineManager- Parameters:
deadlineName- aStringrepresenting the name of the deadline to cancelscheduleId- theStringdenoting the scheduled deadline to cancel
-
cancelAll
Description copied from interface:DeadlineManagerCancels all the deadlines corresponding to the givendeadlineName. This method has no impact on deadlines which have already been triggered.- Specified by:
cancelAllin interfaceDeadlineManager- Parameters:
deadlineName- aStringrepresenting the name of the deadlines to cancel
-
cancelAllWithinScope
Description copied from interface:DeadlineManagerCancels all deadlines corresponding to the givendeadlineNameandscope. This method has no impact on deadlines which have already been triggered.- Specified by:
cancelAllWithinScopein interfaceDeadlineManager- Parameters:
deadlineName- aStringrepresenting the name of the deadlines to cancelscope- aScopeDescriptordescribing the scope within which the deadline was scheduled
-
registerLifecycleHandlers
Description copied from interface:LifecycleRegisters the activities to be executed in the various phases of an application's lifecycle. This could either be at startup, shutdown, or both.- Specified by:
registerLifecycleHandlersin interfaceLifecycle- Parameters:
lifecycle- the lifecycle instance to register the handlers with- See Also:
-
shutdown
public void shutdown()Description copied from interface:DeadlineManagerShuts down this deadline manager.- Specified by:
shutdownin interfaceDeadlineManager
-