Skip to content

jokerlee/simple-failover-java

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-failover-java Build Status Coverage Status

A simple failover library for Java

  • jdk1.8 only

Get Started

<dependency>
    <groupId>com.github.phantomthief</groupId>
    <artifactId>simple-failover</artifactId>
    <version>0.1.16</version>
</dependency>
class MyClientFailoverHolder {

  private final Failover<MyClient> failover = WeightFailover.<MyClient> newGenericBuilder()
          .checker(this::checkAlive)
          .build(allClients(), 100);

  private List<MyClient> allClients() {
    // ...
  }

  private double checkAlive(MyClient myClient) {
    if (checkAlive(myAlive)) {
      return 1.0D;
    } else {
      return 0.0D;
    }
  }

  public void foo() {
    MyClient client = failover.getOneAvailable();
    try {
      client.doSomething();
      failover.success(client);
    } catch (Throwable e) {
      failover.fail(client);
      throw e;
    }
  }

  public void foo2() {
    failover.runWithRetry(MyClient::doSomething);
  }
}

About

A simple failover library for Java

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%