io.engineblock.activities.csv.errorhandling.ErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of at-basics Show documentation
Show all versions of at-basics Show documentation
A engineblock ActivityType (AT) driver module;
Provides a diagnostic activity that logs input at some interval
package io.engineblock.activities.csv.errorhandling;
/**
* When an error filter allows us to see and handle an error in a specific way,
* the ErrorResponse determine exactly how we handle it. Each level represents
* a starting point in handling, including everything after the starting point.
* The first enum is the most severe response.
*/
public enum ErrorResponse {
stop, // Rethrow this error to the runtime, forcing it to handle the error or stop
warn, // log a warning with some details about this error
retry, // resubmit this operation up to the available tries
count, // count this metric separatelycount, // count this metric separately
ignore // do nothing
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy