- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Example Issue with Scala API Documentation and Scala Complexity
Mon, 2011-11-28, 23:07
I was trying to figure out how to start up a process and capture and
went to
and the solution was immediately obvious. A picture really is worth a thousand words! It would be ever so helpful if the example presented on this web page could be added as an example in the scaladoc for ProcessLogger.
Having more good examples in the scaladoc would make learning and using Scala much more painless. I would update the scaladoc myself, if I knew how. Is it appropriate for me to enter solutions like this in JIRA?
Cheers, Eric
- http://www.scala-lang.org/api/current/index.html#scala.sys.process.Process
- http://www.scala-lang.org/api/current/index.html#scala.sys.process.ProcessBuilder
- http://www.scala-lang.org/api/current/index.html#scala.sys.process.ProcessLogger
and the solution was immediately obvious. A picture really is worth a thousand words! It would be ever so helpful if the example presented on this web page could be added as an example in the scaladoc for ProcessLogger.
val logger = ProcessLogger(
(o: String) => println("out " + o),
(e: String) => println("err " + e))
is significantly more helpful thandef err (s: ⇒ String): UnitI am a casual user of Scala, and between the scaladoc and Google searching, and rereading "Programming in Scala" - it was significantly more work than trying to figure out the equivalent functionality in Java.Will be called with each line read from the process error stream.
def out (s: ⇒ String): UnitWill be called with each line read from the process output stream.
Having more good examples in the scaladoc would make learning and using Scala much more painless. I would update the scaladoc myself, if I knew how. Is it appropriate for me to enter solutions like this in JIRA?
Cheers, Eric