Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created September 30, 2015 15:19
Show Gist options
  • Select an option

  • Save ashkrit/eb6b94b22794ac1216d1 to your computer and use it in GitHub Desktop.

Select an option

Save ashkrit/eb6b94b22794ac1216d1 to your computer and use it in GitHub Desktop.
@FunctionalInterface
public interface CodeBlock {
void execute();
}
public static void time(String name, CodeBlock codeBlock) {
long start = System.currentTimeMillis();
codeBlock.execute();
long total = System.currentTimeMillis() - start;
System.out.println(name + " took " + total + " ms");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment