Skip to content

Instantly share code, notes, and snippets.

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