Skip to content

Instantly share code, notes, and snippets.

@pallocchi
Last active March 9, 2017 04:08
Show Gist options
  • Save pallocchi/b28e1179343e783c3a8e433229fd6a5f to your computer and use it in GitHub Desktop.
Save pallocchi/b28e1179343e783c3a8e433229fd6a5f to your computer and use it in GitHub Desktop.
Using Java 8 lambdas with Netflix Hystrix
String greet = Underwood.forSingle(String.class)
.withGroup("ExampleGroup")
.withName("ExampleCommand")
.withTimeout(5000)
.withFallback(e -> "Hello anonymous!")
.execute(() -> "Hello " + name + "!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment