Skip to content

Instantly share code, notes, and snippets.

@beders
Created July 7, 2015 06:03
Show Gist options
  • Save beders/a4229baac6464e1c7e51 to your computer and use it in GitHub Desktop.
Save beders/a4229baac6464e1c7e51 to your computer and use it in GitHub Desktop.
Optional parameters in lambdas
bus.register(msg -> { System.out.println("I gots a message") });
bus.register((msg,param) -> { System.out.println("I gots a message w/ params"); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment