Skip to content

Instantly share code, notes, and snippets.

@ReaperUnreal
Last active December 11, 2015 15:41
Show Gist options
  • Save ReaperUnreal/bd6626a97a8cd8ca7cab to your computer and use it in GitHub Desktop.
Save ReaperUnreal/bd6626a97a8cd8ca7cab to your computer and use it in GitHub Desktop.
Feels good man.
Optional<Paytable> maybePaytable = getPaytable(machineId);
Response response = maybePaytable.map(Response::ok)
.orElseGet(Response::noContent)
.build();
asyncResponse.resume(response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment