Created
March 24, 2015 17:45
-
-
Save codedmart/46607a57ec9ac30d5513 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
package com.scalaRethinkdb | |
object VersionDummy { | |
trait Version extends Wire { | |
val fromWire = (str: String) => str match { | |
case "V0_3" => V0_3 | |
case "V0_4" => V0_4 | |
case _ => throw new RethinkDbUnexpectedResponseError("Some error.") | |
} | |
} | |
case object V0_3 extends Version { | |
val toWire = 0x5f75e83e | |
} | |
case object V0_4 extends Version { | |
val toWire = 0x400c2d20 | |
} | |
} |
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
package com.scalaRethinkdb | |
trait Wire { | |
type FromWire[T] = (String) => T | |
val toWire: Int | |
val fromWire: FromWire[T] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment