Uses of Class
co.yellowdog.platform.model.Selection
Packages that use Selection
Package
Description
Provides the types that define the YellowDog Platform data model.
Provides custom validators containing extended validation logic for certain model types
-
Uses of Selection in co.yellowdog.platform.model
Subclasses with type arguments of type Selection in co.yellowdog.platform.modelMethods in co.yellowdog.platform.model that return SelectionModifier and TypeMethodDescriptionSelection.Builder.buildUnchecked()static <T> Selection<T> static <T> Selection<T> Selection.excludes(T... excludes) TaskErrorSelector.getErrorTypes()TaskErrorSelector.getProcessExitCodes()ResubmissionDestination.getResubmitErrors()RetryPolicy.getRetryErrors()TaskErrorSelector.getStatusesAtFailure()static <T> Selection<T> static <T> Selection<T> Selection.includes(T... includes) Methods in co.yellowdog.platform.model with parameters of type SelectionModifier and TypeMethodDescriptionstatic ResubmissionDestinationResubmissionDestination.destination(String destinationTaskGroup, Selection<TaskErrorSelector> resubmitErrors) Create aResubmissionDestinationthat will resubmitTaskStatus.FAILEDTasks that match theSelectionto the destinationTaskGroup.TaskErrorSelector.Builder.errorTypes(Selection<String> errorTypes) TaskErrorSelector.Builder.processExitCodes(Selection<Integer> processExitCodes) ResubmissionDestination.Builder.resubmitErrors(Selection<TaskErrorSelector> resubmitErrors) static RetryPolicyRetryPolicy.retry(int maxRetries, Selection<TaskErrorSelector> retryErrors) RetryTasks for the maxRetries specified.RetryPolicy.Builder.retryErrors(Selection<TaskErrorSelector> retryErrors) voidTaskErrorSelector.setErrorTypes(Selection<String> errorTypes) voidTaskErrorSelector.setProcessExitCodes(Selection<Integer> processExitCodes) voidTaskErrorSelector.setStatusesAtFailure(Selection<TaskStatus> statusesAtFailure) TaskErrorSelector.Builder.statusesAtFailure(Selection<TaskStatus> statusesAtFailure) Constructors in co.yellowdog.platform.model with parameters of type SelectionModifierConstructorDescriptionResubmissionDestination(String destinationTaskGroup, Selection<TaskErrorSelector> resubmitErrors) Creates a newResubmissionDestinationinstance.RetryPolicy(int maxRetries, Selection<TaskErrorSelector> retryErrors) Creates a newRetryPolicyinstance.TaskErrorSelector(Selection<String> errorTypes, Selection<TaskStatus> statusesAtFailure, Selection<Integer> processExitCodes) Creates a newTaskErrorSelectorinstance. -
Uses of Selection in co.yellowdog.platform.model.validation.customvalidators
Subclasses with type arguments of type Selection in co.yellowdog.platform.model.validation.customvalidators