Class JobRunrDeadlineManager
java.lang.Object
org.axonframework.deadline.AbstractDeadlineManager
org.axonframework.deadline.jobrunr.JobRunrDeadlineManager
- All Implemented Interfaces:
DeadlineManager,Lifecycle,MessageDispatchInterceptorSupport<DeadlineMessage<?>>,MessageHandlerInterceptorSupport<DeadlineMessage<?>>
Implementation of
DeadlineManager that delegates scheduling and triggering to a Jobrunr
JobScheduler.- Since:
- 4.7.0
- Author:
- Tom de Backer, Gerard Klijs
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder class to instantiate aJobRunrDeadlineManager.Nested classes/interfaces inherited from interface org.axonframework.lifecycle.Lifecycle
Lifecycle.LifecycleHandler, Lifecycle.LifecycleRegistry -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedInstantiate aJobRunrDeadlineManagerbased on the fields contained in theJobRunrDeadlineManager.Builder. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Instantiate a Builder to be able to create aJobRunrDeadlineManager.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.voidDeprecated.voidThis function should only be called via JobRunr when a deadline was triggered.protected StringProvides the class to use in spans,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
-
Field Details
-
DELETE_REASON
- See Also:
-
-
Constructor Details
-
JobRunrDeadlineManager
Instantiate aJobRunrDeadlineManagerbased on the fields contained in theJobRunrDeadlineManager.Builder.Will assert that the
ScopeAwareProvider,JobSchedulerandSerializerare notnull, and will throw anAxonConfigurationExceptionif any of them isnull.- Parameters:
builder- theQuartzDeadlineManager.Builderused to instantiate aQuartzDeadlineManagerinstance
-
-
Method Details
-
builder
Instantiate a Builder to be able to create aJobRunrDeadlineManager.The
TransactionManageris defaulted to aNoTransactionManager.The
SpanFactoryis defaulted to aNoOpSpanFactory.The
JobScheduler,ScopeAwareProviderandSerializerare hard requirements and as such should be provided.- Returns:
- a Builder to be able to create a
JobRunrDeadlineManager
-
getSpanClassName
Provides the class to use in spans,- Returns:
- the class name
-
schedule
public String schedule(@Nonnull Instant triggerDateTime, @Nonnull String deadlineName, @Nullable 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
-
execute
Deprecated.Kept for backwards compatibility, useexecute(String, String)instead.This function should only be called via JobRunr when a deadline was triggered. It will try to execute the scheduled deadline on the set scope. It will throw aDeadlineExceptionin case of errors such that they will be optionally retried by JobRunr.- Parameters:
serializedDeadlineDetails-byte[]containing the serializedDeadlineDetailsobject with all the needed details to execute.
-
execute
This function should only be called via JobRunr when a deadline was triggered. It will try to execute the scheduled deadline on the set scope. It will throw aDeadlineExceptionin case of errors such that they will be optionally retried by JobRunr.- Parameters:
serializedDeadlineDetails-byte[]containing the serializedDeadlineDetailsobject with all the needed details to execute.deadlineId- TheUUIDof the deadline.
-
shutdown
public void shutdown()Description copied from interface:DeadlineManagerShuts down this deadline manager.- Specified by:
shutdownin interfaceDeadlineManager
-
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:
-
execute(String, String)instead.