Java 8 functions
| class Logged { | |
| public static void exec ( Function<String,Void> log ) { | |
| log.apply("hello world"); | |
| } | |
| } | |
| Logged.exec( s -> System.out.println(s) ); | |
| Logged.exec( s -> log.info(s) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment