Created
March 23, 2015 23:58
-
-
Save codedmart/1f37f521e38eb3c2b49a 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
private def read(): Array[Byte] = { | |
var response: Array[Byte] | |
def readBuffer(): Array[Byte] { | |
var buffer = in.read() | |
buffer match { // Getting error here | |
case 0 => response | |
case _ => { | |
response ++= buffer | |
readBuffer() | |
} | |
} | |
} | |
readBuffer() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment