![JAR search and dependency download from the Maven repository](/logo.png)
as.stream.json.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json4s-jackson_2.9.0-1 Show documentation
Show all versions of json4s-jackson_2.9.0-1 Show documentation
Dispatch module providing json4s support
The newest version!
package dispatch.as.json4s.stream
import dispatch.stream.StringsByLine
import org.json4s._
import org.json4s.jackson.JsonMethods._
object Json {
def apply[T](f: JValue => T) =
new StringsByLine[Unit] {
def onStringBy(string: String) {
f(parse(string, true))
}
def onCompleted = ()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy