Package org.springframework.retry.backoff

Examples of org.springframework.retry.backoff.StatelessBackOffPolicy


  }

  @Test
  public void testBackOffInterrupted() throws Throwable {
    RetryTemplate retryTemplate = new RetryTemplate();
    retryTemplate.setBackOffPolicy(new StatelessBackOffPolicy() {
      protected void doBackOff() throws BackOffInterruptedException {
        throw new BackOffInterruptedException("foo");
      }
    });
    try {
View Full Code Here

TOP

Related Classes of org.springframework.retry.backoff.StatelessBackOffPolicy

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.