Skip to content

Instantly share code, notes, and snippets.

@arkadius
Created August 4, 2014 20:10
Show Gist options
  • Save arkadius/2e42509b8e3033a0a73d to your computer and use it in GitHub Desktop.
Save arkadius/2e42509b8e3033a0a73d to your computer and use it in GitHub Desktop.
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