Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created March 23, 2015 18:30
Show Gist options
  • Save codedmart/d92314233ca5d601935e to your computer and use it in GitHub Desktop.
Save codedmart/d92314233ca5d601935e to your computer and use it in GitHub Desktop.
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"
}
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