Uses of Class
org.axonframework.messaging.core.timeout.TaskTimeoutSettings
Packages that use TaskTimeoutSettings
-
Uses of TaskTimeoutSettings in org.axonframework.extension.springboot
Methods in org.axonframework.extension.springboot that return TaskTimeoutSettingsModifier and TypeMethodDescriptionTimeoutProperties.TransactionTimeoutProperties.getCommandBus()Timeout settings for the command bus.TimeoutProperties.MessageHandlerTimeoutProperties.getCommands()The timeout configuration for command handlers.TimeoutProperties.TransactionTimeoutProperties.getDeadline()Timeout settings for deadlines.TimeoutProperties.MessageHandlerTimeoutProperties.getDeadlines()The timeout configuration for deadline handlers.TimeoutProperties.TransactionTimeoutProperties.getEventProcessors()Timeout settings for all event processors, unless a more specific setting is registered via theevent-processorproperty.TimeoutProperties.MessageHandlerTimeoutProperties.getEvents()The timeout configuration for event handlers.TimeoutProperties.MessageHandlerTimeoutProperties.getQueries()The timeout configuration for query handlers.TimeoutProperties.TransactionTimeoutProperties.getQueryBus()Timeout settings for the query bus.Methods in org.axonframework.extension.springboot that return types with arguments of type TaskTimeoutSettingsModifier and TypeMethodDescriptionTimeoutProperties.TransactionTimeoutProperties.getEventProcessor()Timeout settings for specific event processors.Methods in org.axonframework.extension.springboot with parameters of type TaskTimeoutSettingsModifier and TypeMethodDescriptionvoidTimeoutProperties.TransactionTimeoutProperties.setCommandBus(TaskTimeoutSettings commandBus) Sets the timeout settings for the command bus.voidTimeoutProperties.MessageHandlerTimeoutProperties.setCommands(TaskTimeoutSettings commands) Sets the timeout configuration for command handlers.voidTimeoutProperties.TransactionTimeoutProperties.setDeadline(TaskTimeoutSettings deadline) Sets the timeout settings for deadlines.voidTimeoutProperties.MessageHandlerTimeoutProperties.setDeadlines(TaskTimeoutSettings deadlines) Sets the timeout configuration for deadline handlers.voidTimeoutProperties.TransactionTimeoutProperties.setEventProcessors(TaskTimeoutSettings eventProcessors) Sets the timeout settings for event processors.voidTimeoutProperties.MessageHandlerTimeoutProperties.setEvents(TaskTimeoutSettings events) Sets the timeout configuration for event handlers.voidTimeoutProperties.MessageHandlerTimeoutProperties.setQueries(TaskTimeoutSettings queries) Sets the timeout configuration for query handlers.voidTimeoutProperties.TransactionTimeoutProperties.setQueryBus(TaskTimeoutSettings queryBus) Sets the timeout settings for the query bus. -
Uses of TaskTimeoutSettings in org.axonframework.messaging.core.timeout
Methods in org.axonframework.messaging.core.timeout that return TaskTimeoutSettingsModifier and TypeMethodDescriptionHandlerTimeoutConfiguration.getCommands()Retrieves the timeout settings for commands.HandlerTimeoutConfiguration.getDeadlines()Retrieves the timeout settings for deadlines.HandlerTimeoutConfiguration.getEvents()Retrieves the timeout settings for events.HandlerTimeoutConfiguration.getQueries()Retrieves the timeout settings for queries.Constructors in org.axonframework.messaging.core.timeout with parameters of type TaskTimeoutSettingsModifierConstructorDescriptionHandlerTimeoutConfiguration(TaskTimeoutSettings events, TaskTimeoutSettings commands, TaskTimeoutSettings queries, TaskTimeoutSettings deadlines) Creates a newHandlerTimeoutConfigurationwith the given timeout settings.