Package org.apache.uima.resourceSpecifier.factory.impl

Examples of org.apache.uima.resourceSpecifier.factory.impl.ProcessErrorHandlingSettingsImpl


   * Creates Default Error Handling Configuration for Process
   *
   * @return default Process error handling settings
   */
  public static ProcessErrorHandlingSettings createProcessErrorHandlingSettings() {
    return new ProcessErrorHandlingSettingsImpl();
  }
View Full Code Here


   * @param thresholdCount - threshold limit triggering action to be taken
   * @param thresholdWindow - error threshold window
   * @return the process error handling settings
   */
  public static ProcessErrorHandlingSettings createProcessErrorHandlingSettings(int retryCount, int timeout, Action action, boolean continueOnRetryFailure,int thresholdCount, int thresholdWindow) {
    return new ProcessErrorHandlingSettingsImpl(retryCount,timeout, action,continueOnRetryFailure, thresholdCount, thresholdWindow );
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.resourceSpecifier.factory.impl.ProcessErrorHandlingSettingsImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.