Package org.springframework.retry

Examples of org.springframework.retry.RetryContext


  /**
   * Clear all contexts starting with the current one and continuing until
   * {@link RetrySynchronizationManager#clear()} returns null.
   */
  public static RetryContext clearAll() {
    RetryContext result = null;
    RetryContext context = RetrySynchronizationManager.clear();
    while (context != null) {
      result = context;
      context = RetrySynchronizationManager.clear();
    }
    return result;
View Full Code Here

TOP

Related Classes of org.springframework.retry.RetryContext

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.