All Downloads are FREE. Search and download functionalities are using the official Maven repository.

as.stream.lines.scala Maven / Gradle / Ivy

There is a newer version: 0.13.4
Show newest version
package dispatch.as.stream

import dispatch._

import com.ning.http.client._

object Lines {
  def apply[U](f: String => U) =
    new stream.StringsByLine[Unit] {
      def onStringBy(string: String) {
        f(string)
      }
      def onCompleted = ()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy