Last active
October 27, 2016 17:38
-
-
Save mmollaverdi/d318b93ff41f400edff3151e5b6e88c8 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 getSystemStatusInfo(id: String): Future[SystemStatusInfo] = { | |
map2(fetchSystem(id), fetchSystemStatus(id))((system, systemStatus) => SystemStatusInfo(system, systemStatus)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment