Created
August 4, 2014 20:10
-
-
Save arkadius/2e42509b8e3033a0a73d 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
def countPhases(config: Config) = { | |
val retrievePhases = 2 | |
val validatingPhases = validationService.predictPhases(config) | |
val generatingPhases = 1 | |
val marshallingPhases = 1 | |
retrievePhases + validatingPhases + generatingPhases + marshallingPhases | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment