Uses of Class
io.nflow.engine.workflow.definition.WorkflowSettings.Builder
Packages that use WorkflowSettings.Builder
Package
Description
Classes and interfaces for describing and implementing workflow definitions.
-
Uses of WorkflowSettings.Builder in io.nflow.engine.workflow.definition
Methods in io.nflow.engine.workflow.definition that return WorkflowSettings.BuilderModifier and TypeMethodDescriptionWorkflowSettings.Builder.setDefaultPriority(short defaultPriority) Set the default priority for new workflow instances.WorkflowSettings.Builder.setDeleteHistoryCondition(BooleanSupplier deleteHistoryCondition) Set the condition to be checked to decide if workflow instance history should be deleted.WorkflowSettings.Builder.setExceptionAnalyzer(BiFunction<WorkflowState, Throwable, StateProcessExceptionHandling> exceptionAnalyzer) Set the exception analyzer function.WorkflowSettings.Builder.setHistoryDeletableAfter(org.joda.time.ReadablePeriod period) Set the delay after which workflow history (actions, states) can be deleted from the database by nFlow.WorkflowSettings.Builder.setMaxErrorTransitionDelay(org.joda.time.Duration maxErrorTransitionDelay) Set the maximum delay on execution retry after an error.WorkflowSettings.Builder.setMaxRetries(int maxRetries) Set maximum retry attempts.WorkflowSettings.Builder.setMaxSubsequentStateExecutions(int maxSubsequentStateExecutions) Set maximum number of subsequent state executions before forcing a short transition delay.WorkflowSettings.Builder.setMaxSubsequentStateExecutions(WorkflowState state, int maxSubsequentStateExecutions) Set maximum number of subsequent state executions before forcing a short transition delay for given state.WorkflowSettings.Builder.setMinErrorTransitionDelay(org.joda.time.Duration minErrorTransitionDelay) Set the minimum delay on execution retry after an error.WorkflowSettings.Builder.setShortTransitionDelay(org.joda.time.Duration shortTransitionDelay) Set the length of forced delay to break execution of a step that is considered to be busy looping.