Created
March 23, 2015 18:30
-
-
Save codedmart/d92314233ca5d601935e 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
sealed trait Version extends Wire | |
case object V0_3 extends Version { | |
val toWire = 0x5f75e83e | |
val fromWire = "V0_3" | |
} | |
case object V0_4 extends Version { | |
val toWire = 0x400c2d20 | |
val fromWire = "V0_4" | |
} | |
sealed trait Protocol extends Wire | |
case object JSON extends Protocol { | |
val toWire = 0x7e6970c7 | |
val fromWire = "JSON" | |
} |
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
sealed trait Wire { | |
val toWire: Int | |
val fromWire: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment