Last active
January 12, 2017 09:18
-
-
Save motorina0/f0d661c419ebc7e7d2d710fd391c3948 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public <T> T execute(CommandConfig config, Command<T> command) { | |
//... | |
long start = System.currentTimeMillis(); | |
T result = next.execute(config, command); | |
long end = System.currentTimeMillis(); | |
long totalTime = end - start; | |
//... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment